gpt4 book ai didi

php - 显示表中的随机数据

转载 作者:行者123 更新时间:2023-11-29 04:25:43 25 4
gpt4 key购买 nike

我在发布之前浏览了该网站,但似乎没有任何意义。我有一个将信息提交到表格的表格。 for 包含三个字段:$name、$link 和 $itunes。 MySQL 表有 3 列,我想随机提取一个名称、链接和 itunes 并将其显示在页面上。除了提交到数据库的表单之外,我目前没有代码。感谢您的帮助。

最佳答案

SELECT * FROM `table` ORDER BY RAND() LIMIT 0,1;

这将从 mysql 中获取任何随机数据。

程序方式:

<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");

/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}

$query = "SELECT * FROM `table` ORDER BY RAND() LIMIT 0,1";

if ($result = mysqli_query($link, $query)) {

/* fetch associative array */
while ($row = mysqli_fetch_assoc($result)) {
printf ("%s (%s)\n", $row["Name"], $row["CountryCode"]);
}

/* free result set */
mysqli_free_result($result);
}

/* close connection */
mysqli_close($link);
?>

关于php - 显示表中的随机数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12071027/

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