Quote:
My question is how can I get the information submitted without doing credit card processing (I beleive that will involve work to be done on my server before I d
|
Correct. Your server needs to be configured to support SSL for HTTPS connections. This will require buying a publicly registered key pair. There are a lot of details to know to get this done correctly so you probably want to look into getting some help with this. Or you could just use one of the automaic payment processor services like Paypal to handle the transaction part.
Quote:
I suppose I can email the data to me?
|
You could do that but it would not be secure at all. Email by default is sent as plan text, and setting up email encryption is a huge pain. You would be better having them submit the form, then having the server store the order in a database, and then having a secure page that will show you all of the orders.
Quote:
will I be able to do it without php (PHP Emailer)?
|
It does not have to be PHP, but you will need a server side language of some sort. ASP, JSP, PHP, Python, etc.