我试图弄清楚如何在循环中使用它。任何帮助将不胜感激。
$conn = mysql_connect("localhost", "some_user", "password");
if (!$conn) {
echo "Unable to connect to DB: " . mysql_error();
exit;
}
if (!mysql_select_db("some_db")) {
echo "Unable to select mydbname: " . mysql_error();
exit;
}
$sql = "SELECT favid FROM ajaxfavourites";
$result = mysql_query($sql);
if (!$result) {
echo "Could not successfully run query ($sql) from DB: " . mysql_error();
exit;
}
while ($row = mysql_fetch_assoc($result)) {
echo $row["favid"];
}
mysql_free_result($result);
目前显示结果为:
116677889922
我需要他们将它们显示为(它们在数据库中的显示方式):
1166
7788
9922
PS我知道这个功能已被弃用,我只想修复一个旧网站。
答案 0 :(得分:0)
选择以下方式之一:
echo $row["favid"]."<br>";
echo $row["favid"]."\n";
echo $row["favid"].PHP_EOL;
答案 1 :(得分:0)
while ($row = mysql_fetch_assoc($result)) {
echo $row["favid"];
echo "\r\n";
}
答案 2 :(得分:0)
您可以使用'<br/>'
或'<p>'
简单地回显值,如下所示:
while ($row = mysql_fetch_assoc($result)) {
echo $row["favid"] . '<br/>';
}
OR
while ($row = mysql_fetch_assoc($result)) {
echo '<p>' . $row["favid"] . '</p>';
}
你也可以把所有的favid放到数组中,然后在另一个循环中,可以自定义如何显示它们,如下所示:
while ($row = mysql_fetch_assoc($result)) {
$ids[] = $row["favid"];
}
foreach($ids AS $idv) {
echo '<p>' . $idv . '</p>';
}