typo by anonymous

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@343575 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Andrey Gromov 2017-12-05 10:18:28 +00:00
parent 7b20f2f249
commit 169d4be91b
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@
<programlisting role="php">
<![CDATA[
<?php
// Read encrypted archie
// Read encrypted archive
$opts = array(
'zip' => array(
'password' => 'secret',

View file

@ -87,7 +87,7 @@ $db->exec() or die(print_r($db->errorInfo(), true)); // incorrect
$dbh = new PDO('odbc:sample', 'db2inst1', 'ibmdb2');
/* Delete all rows from the FRUIT table */
$count = $dbh->exec("DELETE FROM fruit WHERE colour = 'red'");
$count = $dbh->exec("DELETE FROM fruit");
/* Return number of rows that were deleted */
print("Deleted $count rows.\n");