georg Sun Apr 21 12:08:19 2002 EDT Modified files: /phpdoc/en/reference/mysql/functions mysql-get-server-info.xml Log: added sample added see alsos Index: phpdoc/en/reference/mysql/functions/mysql-get-server-info.xml diff -u phpdoc/en/reference/mysql/functions/mysql-get-server-info.xml:1.2 phpdoc/en/reference/mysql/functions/mysql-get-server-info.xml:1.3 --- phpdoc/en/reference/mysql/functions/mysql-get-server-info.xml:1.2 Wed Apr 17 02:41:12 2002 +++ phpdoc/en/reference/mysql/functions/mysql-get-server-info.xml Sun Apr 21 +12:08:19 2002 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.2 $ --> +<!-- $Revision: 1.3 $ --> <!-- splitted from ./en/functions/mysql.xml, last change in rev 1.96 --> <refentry id="function.mysql-get-server-info"> <refnamediv> @@ -19,8 +19,28 @@ <parameter>link_identifier</parameter> is omitted, the last opened connection will be used. </para> + <example> + <title>mysql_get_server_info Example</title> + <programlisting role="php"> +<![CDATA[ +<?php + printf ("MySQL server version: %s\n", mysql_get_server_info()); +?> +]]> + </programlisting> + <para> + The above example would produce the following output: + </para> + <screen> +<![CDATA[ +MySQL server version: 4.0.1-alpha +]]> + </screen> + </example> <para> - <function>mysql_get_server_info</function> was added in PHP 4.0.5. + See also: <function>mysql_get_client_info</function>, + <function>mysql_get_host_info</function> and + <function>mysql_get_proto_info</function>. </para> </refsect1> </refentry>