O yea, fourallofus, when using the PHP tags, you can't create another instance of PHP with an instance of PHP. If your confused, just take a look at this example:
PHP Code:
<?php
echo 'Welcome back ' . <?php $_GET['username']; ?> ;
?>
The above will just not work.
PHP Code:
<?php
echo 'Welcome back ' . $_GET['username'];
?>
The above works.
And if you ever want to break from the PHP logic, you do it like this:
PHP Code:
<?php
if (isset($_GET['username'])) {
?>
<h1>Hi</h1>
<?php
}
else {
?>
<h1>Please Login</h1>
<?php
}
?>
This might seem a bit confusing though for people who are new at PHP.