① PHP從MYSQL資料庫中隨機讀取若干條數據,並將數據合並為一條數據,在賦值給一個變數。要怎麼實現
你要隨機,表裡就給有一個ID
function rands($num,$max){
for($i=0;$i<$num;$i++){
$a[]=rand(0,$max);
}
return $a;
}
$a=implode(',',$a);
$sql="select * from tablename where id in($a)";
$rl=mysql_query($sql);
while($r=mysql_fetch_array($rl)){
$str.=$r['title'];
}
echo $str;