 Joined: Oct 2007 Posts: 79
 
United States
|
Sep 27, 2011, 06:51:27 PM | #2 |
There is no way to do it natively in PHP without connecting to the MySql server but if your script is connected to MySql, you can do the following
$result = mysql_query("select version() as mysqlversion"); $rs = mysql_fetch_object( $result ); $mysqlversion = $rs->mysqlversion;
|
|