How I would able to make double action form in php ?

  • Thread starter Thread starter Steve T
  • Start date Start date
S

Steve T

Guest
If you know how to program in php this sounds like a pretty trivial question. As for generating the number, just use the random number generating function that is build into php. Check out php.net.

I'm not getting specific because I think your question is missing something.
 
ow I would able to make a form which not only submit data into mysql database and also display in a formatted form also generate 8 digit unique numbers to each entered persons. (By using Mysql and HTML.)
 
Yea, i think we need some clarification.

It doesn't sound like this form need to have more ten one action, the action just needs to point to a php script that does everything you want.


The random number generator answer won't work as it won't be sure to be unquie, but you could use an auto number key id in mysql, not sure why it needs to be 8 digits, but you could start it at 10000000.
 
Back
Top