请问:mysql数据库有个游标吗
大哥, 我想做个PHP文件, 访问一次这个PHP文件, 从数据库取一条记录, 第二次访问, 取下一条,
如何才能实现呢?游标怎么用法,?不太会写SQL语句. 谢谢了
------解决方案--------------------
那就是你服务器没有配置好了,如果先测试,可以把变量写文件吧。
$file='session.txt';
if(!file_exists($file)){
$cursor = 0;
file_put_contents($file, 0, true);
}else{
$cursor = file_get_contents($file);
$cursor ++;
file_put_contents($file, $cursor, true);
}
$query="select id,title,email from cmsecms_custinfo where LIMIT $cursor, 1";
$sql=$empire->query($query);