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_fetch_array 会生成一个结果数组,其中包含一个序列号,我相信你可以通过将 [] 放在字段的末尾来获得。
在获取时,我想为 div 设置顺序 ID,<div id="row1">以跟踪返回的行。行只是一个词,而不是变量。有没有一种简单的方法可以根据数组编号将数字附加到行 - 类似于 row[] 而无需设置计数器?谢谢。
<div id="row1">
如果您不想设置一个我不明白为什么的计数器,并且如果您有类似 id 作为从数据库中获取的表行(您的主键),那么您可以这样做。
while($row = mysql_fetch_array($res)) { echo '<div id="row'.row['id'].'"> Row '.$row['id'].' text</div>'; }