我有一个表中有 6 列的 MySQL 数据库。最终会有大约 100 行,现在我有 3 行。
列标题:FirstName、SecondName、Sentence1、Sentence2、Sentence3、Sentence4
所有表都设置为 VARCHAR
我想在网页上使用 php 从每一行调用随机数据,例如混合和匹配 row1 FirstName 与 row3 SecondName 和 row2 Sentence1 等。
我读到使用 php 随机化更快,但尽管搜索,我真的无法掌握如何做到这一点。
我可以连接到我的 MySQL 数据库并使用以下代码获取返回的结果:
<?php
// Connect to database server
mysql_connect("localhost", "xxx", "yyy") or die (mysql_error ());
// Select database
mysql_select_db("zzz") or die(mysql_error());
// SQL query
$strSQL = "SELECT * FROM Users";
// Execute the query (the recordset $rs contains the result)
$rs = mysql_query($strSQL);
// Loop the recordset $rs
// Each row will be made into an array ($row) using mysql_fetch_array
while($row = mysql_fetch_array($rs)) {
// Write the value of the column FirstName (which is now in the array $row)
echo $row['FirstName'] . "<br />";
}
// Close the database connection
mysql_close();
?>
但这只是返回一列数据。我需要使用以下内容在网页中返回随机代码:
echo $firstname . $lastname . $sentence1 . $sentence2 . $sentence3 . $sentence4;
请注意,这将在之后再重复 3 或 4 行
echo $firstname_2 . $lastname_2 . $sentence1_2 . $sentence2_2 . $sentence3_2 . $sentence4_2;
我对阵列不太感兴趣,但如果有人能让我开始,那就太好了,谢谢。