Page is a not externally linkable
beaudettee - 5:25 pm on Mar 23, 2011 (gmt 0)
Thanks for the reply, Ricknbil.
Yes, I thought about cat_id and will probably change that to make things a bit more efficient but am controlling the text input with dropdowns so format is OK (for now).
I actually did find my issue. I changed this:
$query = "SELECT * FROM category WHERE cDisplay = 'Yes' ORDER BY cLabel";
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result))
to this:
$result = mysql_query("SELECT * FROM category WHERE cDisplay = 'Yes' ORDER BY cLabel") or die(mysql_error());
while($row = mysql_fetch_array( $result ))
and all results show. When you are staring at this stuff all day it sometimes blurs, which is the case here.
Thanks again!