我在MySQL中有带有广告的表。我想按顺序旋转横幅(不随机)。我需要从MySQL表中选择SELECT广告以按顺序显示它的功能或机制,例如1、2、3 ...然后是1,2,3 ...?

最佳答案

在不同页面加载中向同一用户显示横幅1,横幅2,横幅3?

您可以使用Cookie:

//the banner that the user last saw
$banner = (isset($_COOKIE['banner']) && $_COOKIE['banner'] < 3)? $_COOKIE['banner']++ : 1;

//mysql to select and show the banner

$_COOKIE['banner'] = $banner;

关于php - PHP + MySQL条幅旋转器按顺序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2702502/

10-13 04:31