PHP 变量计算不正确
来源:http://pastebin.com/mBJMGean
变量仍然无法正确计算, 即使使用 $_SESSION 变量,它们每次也总是重置。
这试图成为一个带有 2 个按钮的幻灯片,控制“下一个”和“上一个”
变量控件是图片 ID,然后按钮控制变量是什么。
它以某种方式从 3 循环到 1 并且不再移动。
请提供帮助。谢谢。
SOURCE: http://pastebin.com/mBJMGean
Variables are still not calculating correctly,
They always reset every time even with using $_SESSION variables.
This is trying to become a slideshow with 2 buttons that control 'next' and 'prev'
The variable controls are Picture ID and then the buttons control what the variable is.
it somehow loops from 3 to 1 and wont move any more.
Help is needed please. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 session_start() 之前不能有任何输出。将其移至 html 上方,然后重试。
You can't have any output before the session_start(). Move it up above your html and try again.