betz Fri Jan 9 18:00:31 2004 EDT
Modified files:
/phpdoc/en/reference/mysql/functions mysql-affected-rows.xml
Log:
changed pconnect to connect
Index: phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml:1.12
phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml:1.13
--- phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml:1.12 Mon Jan 5
08:03:26 2004
+++ phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml Fri Jan 9 18:00:31
2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.12 $ -->
+<!-- $Revision: 1.13 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.2 -->
<refentry id="function.mysql-affected-rows">
<refnamediv>
@@ -57,7 +57,7 @@
<![CDATA[
<?php
/* connect to database */
-mysql_pconnect("localhost", "mysql_user", "mysql_password")
+mysql_connect("localhost", "mysql_user", "mysql_password")
or die("Could not connect: " . mysql_error());
mysql_select_db("mydb");
@@ -89,7 +89,7 @@
<![CDATA[
<?php
/* connect to database */
-mysql_pconnect("localhost", "mysql_user", "mysql_password") or
+mysql_connect("localhost", "mysql_user", "mysql_password") or
die("Could not connect: " . mysql_error());
mysql_select_db("mydb");