This is a discussion on php, mysql and ssl within the PHP General forums, part of the PHP Programming Forums category; Hey, I want to pass data to and from a mysql database through an ssl connection. I don't know ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hey,
I want to pass data to and from a mysql database through an ssl connection. I don't know if it's possible to use php4 (ver. 4.4.6) and MySQL5 (5.0.37), but I would prefer not to update these applications. If anyone have a code example that shows how to do it, it would be nice. Regards Peter Falk |
|
|||
|
maybe i didn't understand your request, but:
neither mysql or php do anything with ssl. to establish a ssl- connection is a job of your http-server. if i got your idea, you'll try to display some data on a website called with "https"? in this case you have nothing to do, any communication between browser and server is ssl-encrypted. or maybe you'll like to transmit the data from a mysql-server to your webserver on a different machine using a secure connection? in that case, it's still no job for php and mysql, it's a network thing. regards |