gpt4 book ai didi

php - 如何使用 PHP 循环 MySQL 数据

转载 作者:太空宇宙 更新时间:2023-11-03 10:47:54 25 4
gpt4 key购买 nike

我错误地购买了 godaddy linux,现在我不知道如何制作我以前使用经典 ASP 制作的简单照片库!

我已经创建了一个包含字段“image_path”和“no_of_images”等的 MySQL 表...我想做的是连接到数据库表,将 image_path 获取到 img 标签中并循环直到存储在“no_of_images”中的数值被满足。

我已尝试使用此代码执行此操作,但它不起作用。

<?php
$servername = "localhost";
$username="";
$password="";
$dbname="";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$myid = $_GET['id'];
$sql = "SELECT * FROM gallery where id='$myid'";
$result = $conn->query($sql);

$row = mysql_fetch_row($result);
$image_path = $row[3];
$no_of_images = $row[4];
$x = 1;

while($x <= $no_of_images ) {
echo "<img src="$image_path"/"$x".jpg><br>";
$x++;
}

$conn->close();
?>

最佳答案

您正在 mysql 函数中使用 mysqli 结果。你应该使用 $result->fetch_row()

关于php - 如何使用 PHP 循环 MySQL 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28834574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com