cucinato Thu Aug 22 08:26:12 2002 EDT
Modified files:
/phpdoc/en/reference/pgsql/functions pg-send-query.xml
pg-insert.xml
Log:
Typo fixes
Index: phpdoc/en/reference/pgsql/functions/pg-send-query.xml
diff -u phpdoc/en/reference/pgsql/functions/pg-send-query.xml:1.2
phpdoc/en/reference/pgsql/functions/pg-send-query.xml:1.3
--- phpdoc/en/reference/pgsql/functions/pg-send-query.xml:1.2 Wed Apr 17 02:43:22
2002
+++ phpdoc/en/reference/pgsql/functions/pg-send-query.xml Thu Aug 22 08:26:11
+2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
<refentry id='function.pg-send-query'>
<refnamediv>
@@ -24,14 +24,14 @@
<parameter>connection</parameter>. Unlike
<function>pg_query</function>, it can send multiple query to
PostgreSQL and get the result one by one using
- <function>pg_get_result</function>. Script execution is not block
+ <function>pg_get_result</function>. Script execution is not blocked
while query is executing. Use
<function>pg_connection_busy</function> to check connection is
- busy (i.e. query is executing) Query may be canceled by calling
+ busy (i.e. query is executing). Query may be canceled by calling
<function>pg_cancel_query</function>.
</para>
<para>
- Although, user can send multiple query at once. User cannot send
+ Although user can send multiple query at once, user cannot send
multiple query over busy connection. If query is sent while
connection is busy, it waits until last query is finished and
discards all result.
Index: phpdoc/en/reference/pgsql/functions/pg-insert.xml
diff -u phpdoc/en/reference/pgsql/functions/pg-insert.xml:1.4
phpdoc/en/reference/pgsql/functions/pg-insert.xml:1.5
--- phpdoc/en/reference/pgsql/functions/pg-insert.xml:1.4 Wed Apr 24 04:31:06
2002
+++ phpdoc/en/reference/pgsql/functions/pg-insert.xml Thu Aug 22 08:26:11 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
<refentry id='function.pg-insert'>
<refnamediv>
@@ -31,7 +31,7 @@
<![CDATA[
<?php
$db = pg_connect ('dbname=foo');
- // This is safe, since $_POST is converted autotmatically
+ // This is safe, since $_POST is converted automatically
$res = pg_insert($db, 'post_log', $_POST);
if ($res) {
echo "POST data is succesfully logged\n";
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php