我有这个代码:
$result = mysql_query("SELECT * FROM quote ORDER BY RAND() LIMIT 1") or die(mysql_error());
$row = mysql_fetch_array( $result );
echo $row['frase'];
每次您查询时,它都会回显一个随机的“框架”。
我想要做的是避免在连续查询中产生相同的结果。
为了让自己清楚,如果在我的数据库中我有:
1 a
2 b
3 c
如果从echo $row['frase'];
我得到a
下一个结果不能是a
。
我希望我说清楚了,如果没有,请发表评论,我会扩大!
提前致谢!
顺便说一句:对不起@deceze @zerkms @Dr.Molle,因为最后一个问题一团糟!没有伤害,只是狂欢的菜鸟:)
编辑:
为了回答 Jason McCreary,我实际上是这样称呼它的:
<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax_info.php",true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>
</body>
</html>