|
The third step is to make a "shopcheckout.html" page, so
that after a customer has checked out, you can collect
billing information from them.
Place shopcheckout.html
in your main web directory. If your domain is "abc.com" then you
should be able to see http://www.abc.com/shopcheckout.html
Here is sample HTML code that asks basic information:
<FORM METHOD="POST" ACTION="/pzcgi-bin/secureshop.cgi">
<INPUT TYPE="hidden" NAME="cashier" VALUE="name@yourdomain.com">
<INPUT TYPE="hidden" NAME="email_field" VALUE="email">
[!PZ:cartitems]
Name:
<INPUT TYPE="text" NAME="name" SIZE=20>
Phone:
<INPUT TYPE="text" NAME="phone" SIZE=20>
Email:
<INPUT TYPE="text" NAME="email" SIZE=20>
<INPUT TYPE="Submit" NAME="Submit" VALUE="Send Order">
</FORM>
|
Feel free to add many custom form fields as needed.
|
SPECIAL NOTE:
to have your orders sent to you in encrypted form,
for safely receiving credit card numbers over the internet, etc, change your email
address in the CASHIER tag to be:
encrypt:name@yourdomain.com
For example:
<INPUT TYPE="hidden" NAME="cashier" VALUE="encrypt:name@yourdomain.com">
|
|