DBから行を取得するための一般的な形式は、次のようになります。
while ($row = mysql_fetch_assoc($rs)) {
echo $row['column_name'] . "\n";
}
次のように変更する必要があります:
$limit = 24;
while ($limit-- && $row = mysql_fetch_assoc($rs)) {
echo $row['column_name'] . "\n";
}
DBから行を取得するための一般的な形式は、次のようになります。
while ($row = mysql_fetch_assoc($rs)) {
echo $row['column_name'] . "\n";
}
次のように変更する必要があります:
$limit = 24;
while ($limit-- && $row = mysql_fetch_assoc($rs)) {
echo $row['column_name'] . "\n";
}