ok I installed MySQL 4.0.12
(Server & client)
yet mysql_get_client_info()
still returns mysql_get_client_info()
any ideas ?
and you have php installed? Did you surround the call to the function with PHP tags?
<? mysql_get_client_info(); ?>
rather than
mysql_get_client_info();
Cgraz
Here's the code...
<? $MyClient=mysql_get_client_info();
echo "MySQL Server: ".mysql_get_server_info()."<BR>MySQL Client: ".$MyClient;
?>
Not sure why it doesn't work... I copied/pasted your code, and it worked fine. Things that make you go hmmmm....