TerryJones
Programmer
Dear all,<br><br>I am writting a PHP script, where I want to have several diff GUI's (each one depending on user ... eg: 1 for authorised user & 1 to say that they aren't authorised).<br><br>I wish to set it up, so that the called page is mostly HTML tags, and its only called upon in that given case.<br><br>IE: I want something like:<br><br>// In PHP Script1<br>if (authorised)<br> {include "interface1.php3";} <br> else<br> {include "interface2.php3";}<br><br>Could anyone please tell me whether this will work, and if not how to get it so it does.<br><br>Thank you.