Need advice for creating a digitized ticketing admission system

六月ゝ 毕业季﹏ 提交于 2019-12-13 04:27:15

问题


So I know this guy who runs a club on the east coast and he uses wristbands as admission for his club. He wants to get rid of these wrist bands because people have been creating phony ones.

So I plan on having every customer who buys a ticket receive an email address with a QR Code. A ticket seller would enter the customer name and email into my system I'm developing, that system will generate an alphanumeric code and create a new column in an SQL database with that customer name(String), id#(PRIMARY KEY), isVerified(boolean) and alphanumeric code.

The alphanumeric code will be used for the QR Code which will be verified at the entrance of the club.

Does anyone know if there are tutorials or guidea somewhere online for a system very similar to what I'm trying to create? Thanks a bunch.


回答1:


Here is a similar stackoverflow question (concerning QR codes): Dynamically generating a QR code with PHP

Concerning the system itself, you can probably use the existing system, and create the qr code based on the order_id (or something similar)



来源:https://stackoverflow.com/questions/14095442/need-advice-for-creating-a-digitized-ticketing-admission-system

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!