我有一些 PHP 代码,一旦按下下一个箭头,它基本上只会获取数据库中的下一个图像。然而,在我的网站上,我有时可以让 600 多个在线用户全部点击下一步。有什么办法可以优化这个 php 代码以更快地执行?
谢谢!
$nxtImage = mysql_query ("SELECT * FROM images WHERE active=1 and id>$id and section=$section ORDER BY id ASC LIMIT 1") or die (mysql_error());
$nxtrow = mysql_fetch_array($nxtImage);
$nxtnum = mysql_num_rows($nxtImage);
$nid = $nxtrow['id'];
$npicTitle = $nxtrow['img_title'];
$nimgLink = preg_replace("![^a-z0-9]+!i", "-", $npicTitle);
$nimgLink = strtolower($nimgLink);