Posted by Rik on 05/17/06 03:20
Hmmmz, it's getting late for you I think....
Geoff Muldoon wrote:
> Example:
> echo "<input type=hidden name=paddress value=$paddress>";
> should be changed to
> echo "<input type=hidden name=paddress value=/"$paddress/">";
You mean:
echo "<input type=hidden name=paddress value=\"$paddress\">";
> echo '<input type=hidden name=paddress value="$paddress">';
You mean:
echo '<input type=hidden name=paddress value="'.$paddress.'">';
or:
echo "<input type=hidden name=paddress value='$paddress'>";
And now we're busy. just as well put quotes around hidden: couldn't hurt,
and it's a good habit to quote all the attribute-values regardless wether it
is really necessary or not.
Grtz,
--
Rik Wasmus
Navigation:
[Reply to this message]
|