Web Hosting Talk







View Full Version : order number help needed


sbhmike
04-28-2002, 07:19 PM
hi
can anyone help me with order numbers?
i need to generate order numbers and send the information to a secure server
i have modified a script to generate the numbers and the customer can see this number on the order form,but i can`t figure out how to send this number with the form fields

thanks

diederik
04-28-2002, 07:37 PM
What language is the script in ?

sbhmike
04-28-2002, 07:46 PM
perl
not a very good one just a modified counter really

arfarf
05-02-2002, 02:24 AM
How about something like this? You'll have to apply it to perl but you should get the idea from this.


<FORM METHOD="POST" ACTION="https://somedomain.com/cgi-bin/somescript.cgi">
...
<INPUT TYPE="hidden" NAME="Number" VALUE="$ORDERNUMBER">
...
<INPUT TYPE="submit" VALUE="Enter">