Hello everyone I want to use SSL in a webform processed by php.I am new with ssl.How can I use it? Somebody help plz.
SSL is a http based protocol, all your doing is redirecting your users through another protocol instead of the standard http. e.g Visitors enter your site http://www.onlineshop.com, then they are automatically redirected to https://www.onlineshop.com. You dont need two seperate sites, all you need is some PHP code in your index.php or html which redirects to https, if http is detected.
Before you redirect them to httpS, you first have to have SSL setup on the server with a cert, etc. I made a post about it a while back > More secure with SSL - that post is for Drupal, but you may get the point/basics..