There's a number of posts talking about getting secure data like credit card info. Not knowing PHP programming, I've been seeking a way to get data delivered safely end to end to the business computer.
One way that should seemingly work I discovered is the secure email system from Cryptoheaven, which allows you to add some html to the post method of a form to have it sent out securely.
So, my question is would this work and if so how would the code snippet they provide be applied?
Using CryptoHeaven Web Forms
Your existing form has a <FORM> tag that looks similar to this:
<FORM METHOD=POST ACTION="http://www.yourserver.com/form.htm">
Replace this entire tag with this one:
<FORM METHOD=POST ACTION="https://www.cryptoheaven.com/ch/web-form.jsp" ENCTYPE="multipart/form-data">
Add this line between the <FORM> and </FORM> tags. Replace the 2500000 number with your CryptoHeaven numeric ID.
<INPUT TYPE="hidden" name="CH_uId" value="2500000">
Optional parameters:
<input type="hidden" name="CH_successPage" value="http://www.yourserver.com/success">
<input type="hidden" name="CH_errorPage" value="http://www.yourserver.com/error">
<input type="hidden" name="CH_fromName" value="CryptoHeaven Secure Form">
<input type="hidden" name="CH_fromEmail" value="forms@cryptoheaven.com">
<input type="hidden" name="CH_subject" value="CryptoHeaven Secure Form">
http://cryptoheaven.com/secure-web-forms/secure-SSL-web-forms.htm
Thanks, as always.