Re: php, mysql and ssl
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
.
Relevant Pages
- [PHP] PHP-Java Bridge: Connect PHP to MySQL using JNDI
... Tomcat via mod_proxy. ... I also have some JSP code that uses a JNDI connection to the MySQL database ... Now what I want to do is use PHP code to connect to MySQL using JNDI, ... (php.general) - Re: PHP and MSSQL (and Access????)
... > MSSQL wouldn't be easier to use, more specifically I was wondering wether I ... > could make an Access Database and connect it to my php website using MSSQL. ... MySQL is a server based database, ... Such a connection is, in my experience, ... (php.general) - Re: One Global Connection vs. Open-Close
... PHP and MySQL --- and I have a question. ... database connection and re-use it throughout the life of the ... As for connection pooling - yes, I've seen this being recommended in SQL Server also - but I've found it's only good when you have a lot going on - same with PHP and MySQL. ... (comp.lang.php) - Re: local v remote
... PHP version problem? ... probably connecting to a locally-hosted mysql installation. ... Are you using the same connection string when you upload? ... You should also always try to pass the resource to the mysql_query function ... (php.general) - One Global Connection vs. Open-Close
... PHP and MySQL --- and I have a question. ... database connection and re-use it throughout the life of the ... (comp.lang.php) |
|