PHP - HTTPS SSL Applying
How would I apply SSL HTTPS to my PHP Login system. My login system is basic here is how it goes:
Fetches session and user then checks开发者_Python百科 if its correct. I'll need some kind of SSL/HTTPS checking.
Any examples?
Your question makes little sense. SSL is a secure transport layer, but its operation is totally transparent to PHP.
Everything that worked before you had SSL should work the same way it does with SSL. All the authentication and encryption/decryption is done automatically for you.
See:
- How SSL works (from Verisign)
- Step by Step: Configuring SSL Under Apache
- ServerFault (if you run into problems configuring the server)
精彩评论