Hi All,
I am working with MYSQL_FETCH_ARRAY in a situation where a while() is not going to work easily. Does anyone know how to cause the while to advance like in a for loop before completing?
I have a db set up for a calender... their are two columns one for day of the month the other for the description of events for that day. I need to be able to check and see if that day corresponds with the number in the database - if so it prints the description.
I thought I might be able to access the data like a multidimensional array $row[0][0] and just incriment the first [0]... It didn't work correctly though... Any other ways of accomplishing what I am looking to do?
Thanks
Scott