georg Sun Apr 21 12:07:59 2002 EDT
Modified files:
/phpdoc/en/reference/mysql/functions mysql-get-proto-info.xml
Log:
added sample
added see alsos
Index: phpdoc/en/reference/mysql/functions/mysql-get-proto-info.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-get-proto-info.xml:1.2
phpdoc/en/reference/mysql/functions/mysql-get-proto-info.xml:1.3
--- phpdoc/en/reference/mysql/functions/mysql-get-proto-info.xml:1.2 Wed Apr 17
02:41:12 2002
+++ phpdoc/en/reference/mysql/functions/mysql-get-proto-info.xml Sun Apr 21
+12:07:59 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.62 -->
<refentry id="function.mysql-get-proto-info">
<refnamediv>
@@ -19,8 +19,28 @@
<parameter>link_identifier</parameter> is omitted, the last opened
connection will be used.
</para>
+ <example>
+ <title>mysql_get_proto_info Example</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+ printf ("MySQL protocol version: %s\n", mysql_get_proto_info());
+?>
+]]>
+ </programlisting>
+ <para>
+ The above example would produce the following output:
+ </para>
+ <screen>
+<![CDATA[
+MySQL protocol version : 10
+]]>
+ </screen>
+ </example>
<para>
- <function>mysql_get_proto_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_server_info</function>.
</para>
</refsect1>
</refentry>