你要随机,表里就给有一个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;
随机选取:SELECT * FROM 表名 ORDER BY rand() LIMIT 你想要的数量;
我不知道你的合并是什么意思,如果就是单纯的累加,那当你处理results的时候,就用[.]符号连接即可。
$sql = "select title from 表名";
$result = mysql_query($sql);
$title = '';
while($res = mysql_fetch_array($result, MYSQL_ASSOC) )
{
$title .= $res['title'];
}
echo $title;