PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
For my website I'm making my own forums but I'm trying to make one function do like 60 things at once. I have a while statememt and that echoes the category of the forums. But inside that while statement under where it echeos the catagory I want to add another while statement to echo the forums in that specific category.
I have been fiddling around with it and my browser just kindof "ignores" the second while statement.
Try using mysql_fetch_assoc instead of mysql_fetch array. I believe your $category['name'] is not being set as the return values are numerically indexed. Hence you are not returning any values for the second while.