我有一個表中有6列的MySQL數據庫。這裏最終將大約100行,現在我有3php隨機mysql數據
列標題:名字,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;
我不是太熱的數組,但如果有人能讓我開始這將是很好,謝謝。
+1實際閱讀的問題! (並用3分鐘讓我接到帖子) – RobMasters
馬太很好,謝謝。我現在唯一需要知道的是,如果以後可以在網頁php中調用它,而無需再次連接到數據庫? – Sara44
是的,它可以。所有數據都存儲在$ rows變量中。 – MatthewMcGovern