redgreen 0 Report post Posted April 1, 2010 How do you make your PHP Code Secure? and How make Registration Pages secure? Share this post Link to post Share on other sites
nirvaman 1 Report post Posted April 1, 2010 What do you mean by secure ?If you mean secure the informations , so you can use md5 for the stored passwords , credit cards ..etc.and if you mean login secure , you can use a captcha system , try recaptchaIf you meant other things , just give us more details Share this post Link to post Share on other sites
Jonnyabc 0 Report post Posted April 3, 2010 I believe redgreen is requesting information on SSL. This is something I am unfamiliar with, but nevertheless certain that this is what redgreen is asking about since I too have asked myself those same questions too. Share this post Link to post Share on other sites
jlhaslip 4 Report post Posted April 3, 2010 moved to the php coding section. Share this post Link to post Share on other sites
andresf91 0 Report post Posted April 13, 2010 I'm unfamiliar with SSL too, but I think you will need OpenSSL or similar on your host and I'm not sure if your domain also need to be able to direct https:// like connections.For your PHP script you will need to use OpenSSL functions, which I've never used.So first, check if your host has OpenSSL installed. Best way is trough phpinfo() If you pay a hosting service, ask the administrator, if you host it yourself, I'm sure download it and install it.Once you're sure you have SSL support in the server, study those PHP functions I linked above. I guess you' can do it that way. Share this post Link to post Share on other sites
roysmith27 0 Report post Posted April 28, 2010 I highly recommend just gone through the PHP architect's Guide PHP Security book.These Books guide you in simple way regarding the php security with the appropriate example. Share this post Link to post Share on other sites