hi,
example mentioned at http://www.phpbuilder.com/manual/tutorial.forms.php
there is form code. <form action="action.php" method="POST"> Your name: <input type="text" name="name" /> Your age: <input type="text" name="age" /> <input type="submit"> </form>
what is the concept behind adding " />(slash)" in input type tag.
Thanks
To be standards compliant as per the W3C....
Thanks for the info. Joe
i hv to write <? echo "<font color="yellow" face="arial">" . $phpVariable . "</font>"; ?>
it is giving parse error.plz suggest correct syntax.
Needs to be:
<? echo "<font color='yellow' face='arial'>" . $phpVariable . "</font>"; ?>
Thanks for the info.