mysql_get_host_info

mysql_get_host_info -- Get MySQL host info

Description

string mysql_get_host_info ( [resource link_identifier])

דוגמה 1 . mysql_get_host_info Example

 
?php

 
mysql_connect(

 
"localhost"

 
,

 
"mysql_user"

 
,

 
"mysql_password"

 
)

 
or

 
die("could

 
not

 
connect")

 
;

 
printf

 
("MySQL

 
host

 
info

 
:

 
%s\n"

 
,

 
mysql_get_host_info())

 
;

 
?