Posted by Toby A Inkster on 12/20/07 10:01
it wrote:
> echo '
> <product id="'.$row['description'].'">
> </product>';
echo '
<product id="'.htmlentities($row['description']).'">
</product>';
Also, for what it's worth...
> select * from products ORDER BY description
select description from products ORDER BY description
ought to be faster.
--
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 12 days, 20:36.]
Sharing Music with Apple iTunes
http://tobyinkster.co.uk/blog/2007/11/28/itunes-sharing/
[Back to original message]
|