|
Posted by Drakazz on 05/18/06 09:34
Very sorry,
use MYSQL_CLIENT_SSL for configuring the connection.
As the php.net/mysql_connect documents:
resource mysql_connect ( [string server [, string username [, string
password [, bool new_link [, int client_flags]]]]] )
So you'd do something like this:
mysql_connect('my.server.com','username','password',true,
MYSQL_CLIENT_SSL);
Not sure if it'll work as there are no examples, but have a go!
Good Luck!
Regards
Navigation:
[Reply to this message]
|