Forum Moderators: coopster
<input type="text" id="FirstName" name="FirstName value="<? $_SESSION["FirstName"]?>"/>
....value="<? $_SESSION["FirstName"]?>"
Somewhere in here I saw a shorter syntax: <input type="text" id="FirstName" name="FirstName" value="<?= $_SESSION['FirstName'];?>" />
but I don't think it would work on my server.
So this is fine <?php echo
and this isnt <?=
Ally
I do not think it has been depreciated; it makes it slightly quicker to type :)