Thank you Vincent.
I'll make sure to format my code
in the same manner..
But I'm afraid my question is a bit more complex.
my sql is limited to only 15 rows .. (seed 0, limit 15) .. and returns only 15 rows at
a time.
when the mysql database finds 2703 similar
products, it will display them 15 at a time
(with 'LIMIT 0, 10') .. then 'mysql_fetch_array()' only has to work with 15 rows (to my knowledge) .. and it works just fine.. it will echo all rows and content.
but when the search, apllies to more then 5000 products (still limited by 0, 15) .. 'mysql_fetch_array()' should not see a difference in row count (only 15 rows return. ... in fact even mysql_num_rows() and mysql_affected_rows() will echo '15' as the result.) .. and still 'mysql_fetch_array()' dies on me. ..
please help.. thank you.
vincent wrote:
use error checking to find out what is wrong, check out this article:
http://www.xs4all.nl/~vinny/index.html#4