我目前有一张如下表。
ID adPlacement filePath dateAdded adName adLink
12 1 Test 1.png 2013-02-12 Test 1 http://www.cuad.coop
13 1 Test 2.png 2013-02-12 Test 2 http://www.google.com
我正在尝试随机选择一行并在单独的 echo 语句中回显 adName、adLink 和 filePath。
这是我现在正在使用的代码:
$query_adSpot1 = "SELECT * FROM advertisements WHERE adPlacement = 1";
$result = mysql_query($query_adSpot1, $server) or die(mysql_error());
while($row = mysql_fetch_array($result)){
$row = array(
'adName' => $row['adName'],
'filePath' => $row['filePath'],
'adLink' => $row['adLink']
);
$fileLocation = $row;
$fileLocations[] = $fileLocation;
}
shuffle($fileLocation);
echo $fileLocation[0];
现在,当我运行脚本时,它会编写 test 2.png、test 2 或http://www.google.com。
我希望能够与随机行分开回显,但需要单独的列等于同一行。
echo filePath
echo adName
echo adLink