PHP 中的序列号
请我在 php 中构建一个表,该表将列出数据库中的项目,列出的数量取决于可用数量。我想使用 php.ini 对我的 s/n 列进行连续编号。 例如。
s/n Name amount
1 Mathew $12
2
3
4
etc
Please I am building a table in php that will list item from database, the amount listed depends on amount available. I want to number my s/n column serially using php.
eg.
s/n Name amount
1 Mathew $12
2
3
4
etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下MYSQL的自动增量。因此,第一个注册的用户将获得 SN 1,第二个用户将获得 2 等等
http://dev.mysql.com/doc/refman/5.0/en/example-auto-increment.html
Try MYSQL's auto increment. So the first user who registers gets SN 1 and second would get 2 etc
http://dev.mysql.com/doc/refman/5.0/en/example-auto-increment.html
请参阅
range()
see
range()