Php – How to use SSL certificate on the web-site

htmlPHPssl

I'm new to SSL, but my php web-site will contain secret information from users. I hear that ssl (https) can establish a solid security level. But, how to use it? How to implement it to my html files?

Any guides, links or information will be great.

Thanks in advance.

Best Answer

SSL has nothing to do with your php or html-pages. It's encryption of communication between (web-)server and client (usually a webbrowser) on the application layer.

The way to set it up depends on the web-server used. To cover the two most popular servers:

SSL-Certificates need to be signed by a trusted authority like Verisign to not produce warning messages on the user side.

HTH, flokra

Related Topic