Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们将一个 MySQL 表数据放在一个名为 $row1 的数组中。现在,我们只想从这个数组中回显一些行。例如 :
While ($row1 = mysql_fetch_array($query)) { echo $row1['name']; }
(但其中 id 等于 5)
我们怎么能做到这一点?
在您的 SQL 语句中,将其添加到末尾:WHERE id = 5,如果您已经有一个WHERE子句,请添加AND id = 5
WHERE id = 5
WHERE
AND id = 5
交替...
if ($row1['id'] == 5) { echo $row1['name']; }
发布您的所有代码..我们可以让您的这种体验不那么痛苦。