PDA

View Full Version : sending creditcardnumber via PHP mailform in flash



sense
January 30th, 2003, 07:32 PM
hi, working with Flash MX.

I have a mailform in wich you fill out your creditcardnumber.

What is the best way to protect the data that is being sent...

I have absolutely no clue on this one..


Thought I heard about encrypting the data? how can this be done.

tnx

Jubba
January 30th, 2003, 07:41 PM
this might help, not sure tho. Never done it. :) good luck. if this don't work, try doing a Google Search.

http://www.scriptarchive.com/readme/ccver.html

sense
January 30th, 2003, 08:04 PM
thanks but that is not exactly what I'm looking for.

More specific..

I use loadVariables() in flash and a backend PHP program which saves the data into a MY SQL Server.

how can I protect the information?

Jubba
January 30th, 2003, 08:11 PM
ok, I'm not sure exactly. Here is something else...

http://forums.devshed.com/archive/5/2002/01/4/29760

you could check PHP manual... www.php.net

Also run a search thru google...

abzoid
January 30th, 2003, 10:20 PM
You'll need to enable the Secure Socket Layer (SSL) on the page that submits the credit card information to the server. To do so you or your client will need to purchase a secure certificate for that domain. http://www.thawte.com is the most widely used. The client's web host will probably have to apply on the client's behalf then install the certificate. The bottom line: It's the SSL, not a PHP scripting command, that encrypts the data passed from the browser back to the server.

abzoid