Posted by Geoff Berrow on 09/19/05 19:08
I noticed that Message-ID: <IgAXe.8993$9l.272957@twister1.libero.it>
from mars contained the following:
>Fixed it! The main problem were the quotes :
>
>print ('<OPTION value="'.$line['year'].'">'.$line['year'].'</OPTION>');
Personally I'd do it like this
print "<OPTION value='".$line['year']."'>".$line['year']."</OPTION>";
--
Geoff Berrow (put thecat out to email)
It's only Usenet, no one dies.
My opinions, not the committee's, mine.
Simple RFDs http://www.ckdog.co.uk/rfdmaker/
[Back to original message]
|