Developing MySQL Database Applications With PHP Part 1: Using the MySQL Improved Exte


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS Developing MySQL Database Applications With PHP Part 1: Using the MySQL Improved Exte
# 1  
Old 06-12-2009
Developing MySQL Database Applications With PHP Part 1: Using the MySQL Improved Exte

This tutorial series provides essential steps for installing PHP with MySQL extensions mysql, mysqli, and pdo_mysql, and with support for the MySQL native driver for PHP, mysqlnd.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to backup a particular Database in MYSQL?

Hi All, Thanks in Advance!! How to backup a particular Databases..through Bash script!! For example i have 6 databases; Anish linux Software Questions Rhce Google these are the databases i have from that i want to take "Anish" and "questions" database backup regularly.... (4 Replies)
Discussion started by: anishkumarv
4 Replies

2. Virtualization and Cloud Computing

Problems with PHP query to MySQL database

Hello all, I completed a website (it was code by php) and putted it to AWS, I install fedora instance in EC2 with the base is php and mysql. I putted all files of my website to folder /home/webuser/helloworld/htddocs and my database (mysql) to folder /var/lib/mysql/test ("test" is my... (2 Replies)
Discussion started by: hero132
2 Replies
Login or Register to Ask a Question
MYSQLI_SSL_SET(3)							 1							 MYSQLI_SSL_SET(3)

mysqli::ssl_set - Used for establishing secure connections using SSL

       Object oriented style

SYNOPSIS
bool mysqli::ssl_set (string $key, string $cert, string $ca, string $capath, string $cipher) DESCRIPTION
Procedural style bool mysqli_ssl_set (mysqli $link, string $key, string $cert, string $ca, string $capath, string $cipher) Used for establishing secure connections using SSL. It must be called before mysqli_real_connect(3). This function does nothing unless OpenSSL support is enabled. Note that MySQL Native Driver does not support SSL before PHP 5.3.3, so calling this function when using MySQL Native Driver will result in an error. MySQL Native Driver is enabled by default on Microsoft Windows from PHP version 5.3 onwards. PARAMETERS
o $ link -Procedural style only: A link identifier returned by mysqli_connect(3) or mysqli_init(3) o $key - The path name to the key file. o $cert - The path name to the certificate file. o $ca - The path name to the certificate authority file. o $capath - The pathname to a directory that contains trusted SSL CA certificates in PEM format. o $cipher - A list of allowable ciphers to use for SSL encryption. Any unused SSL parameters may be given as NULL RETURN VALUES
This function always returns TRUE value. If SSL setup is incorrect mysqli_real_connect(3) will return an error when you attempt to con- nect. SEE ALSO
mysqli_options(3), mysqli_real_connect(3). PHP Documentation Group MYSQLI_SSL_SET(3)