slawek Sat Apr 13 16:37:57 2002 EDT
Modified files:
/phpdoc/en/functions mysql.xml
Log:
Example password correction
Index: phpdoc/en/functions/mysql.xml
diff -u phpdoc/en/functions/mysql.xml:1.108 phpdoc/en/functions/mysql.xml:1.109
--- phpdoc/en/functions/mysql.xml:1.108 Thu Apr 11 13:26:29 2002
+++ phpdoc/en/functions/mysql.xml Sat Apr 13 16:37:57 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.108 $ -->
+<!-- $Revision: 1.109 $ -->
<reference id="ref.mysql">
<title>MySQL Functions</title>
<titleabbrev>MySQL</titleabbrev>
@@ -436,7 +436,7 @@
<programlisting role="php">
<![CDATA[
<?php
-$link = mysql_connect('localhost', 'mysql_user', 'mysql_login');
+$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
$charset = mysql_character_set_name($link);
printf ("current character set is %s\n", $charset);
?>