Web Forms

Secure Web Form

Jun 18th, 2011No Comments

custom php1 Secure Web Form This client needed a form to collect sensitive data on his website. Since sending data over email is never secure, I suggested the following solution:

  • Purchase a secure certificate so when data is sent over the internet it would be encrypted.
  • Send an email notification to the client that a new form has been submitted. Only very general data was included in the email. Date, name…
  • Sensitive data was stored encrypted in the database.
  • A password protected tool was built to view the data on the secure url. If it was accessed on the regular url, code automatically redirected them to the SSL version.
  • The tool decrypted the data in the database and displayed it in a printable format.
  • Once the data was printed, the client then deleted the record from the database.
  • Complex Web Form

    Jun 1st, 2011No Comments

    custom php1 Complex Web FormGenerated a complex web form using PHP ajax and jquery to build a data sheet with a product list. Based on the selections the user made different criteria would display.