Typo in example

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@65998 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Slawomir Pucia 2001-12-22 21:19:07 +00:00
parent e58a6fb09f
commit f464940a9a

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.79 $ -->
<!-- $Revision: 1.80 $ -->
<reference id="ref.mysql">
<title>MySQL Functions</title>
<titleabbrev>MySQL</titleabbrev>
@ -1144,7 +1144,7 @@ mysql_free_result($result);
<programlisting role="php">
<![CDATA[
<?php
mysql_connect("hostname", "user", $password");
mysql_connect("hostname", "user", "password");
mysql_select_db($db);
$result = mysql_query("select * from table");
while ($row = mysql_fetch_object($result)) {