Posted by Geoff Muldoon on 05/17/06 03:35
In article <e4dq6d$37e$1@netlx020.civ.utwente.nl>,
luiheidsgoeroe@hotmail.com says...
> 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.
Oops, not enough coffee, thanks for the corrections.
[Back to original message]
|