* Thus wrote Harlequin:
>
> if ($_SESSION["Authorised"]="Yes");
> {
> // Body ~ Verified User:
> echo "<br><br><br>";
> echo "<p>Thank you $UserCName, Now please just provide the following
> information
> and your aProfile will be loaded.";
> }
> else <<<----- The offending line...!
> {
> echo "You need to go back and complete the fields correctly...!";
> }
You should really work on your indentation*:
if ($_SESSION['Authorized'] == 'Yes' )
{
echo '<p style="padding-top: 3em;">Thank you...</p>';
}
else
{
echo '<p>You need to go back...</p>';
}
* I'll ignore the html part for now :)
Curt
--
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about. No, sir. Our model is the trapezoid!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php