문제

I am making a fees collecting module for a college in php, On submit, I want to echo voucher number, every time the voucher number should be +1 to previous voucher. And every day the voucher number should start from 1.

도움이 되었습니까?

해결책

Just create a DB table to store the current voucher number and the date. On every submit you :

  1. Check if the date is today's date. If not you reset the voucher number
  2. Increment it

And try a little research before asking next time.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top