views:

41

answers:

1

i want my sign up form to be secure from hacker..i want all secret information can't easily open by wrong people..

i wan't some data become encrypted..

how to make it??

A: 

See:

PHP Security Guide

For form security, have a look at:

PHP Security Guide: Form Processing

I would suggest you for HTML Purifier actually:

HTML Purifier is a standards-compliant HTML filter library written in PHP. HTML Purifier will not only remove all malicious code (better known as XSS) with a thoroughly audited,
secure yet permissive whitelist

Sarfraz
OK I'll remove my comment!
Pointy
This will secure the actual sign up process. Additionally you'll want to hash passwords (using a salt), in case someone gains access to your database.
Zackman
ok..i'm interest in using captcha...
klox
@Klox: Then you can go for excellent captcha named reCaptcha: http://recaptcha.net/. It is also used by this site.
Sarfraz
@sarfraz: what is the different using reCaptcha with basic captcha?
klox
@klox: The recaptch is improved and better one.
Sarfraz