Second while loop not running. Why?

后端 未结 6 1895
没有蜡笔的小新
没有蜡笔的小新 2021-01-15 11:37

I have two while loops running one after the other (not inside of each other) - I\'ve simplified the code a bit so that only the important parts of it are listed below. The

6条回答
  •  既然无缘
    2021-01-15 11:55

    mysql_fetch_assoc steps through the results, right? It's already at the end on the second while loop, so it does nothing.

提交回复
热议问题