Clarify example

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290451 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christopher Jones 2009-11-10 02:13:15 +00:00
parent a49b6127db
commit e023266242

View file

@ -86,6 +86,9 @@
<programlisting role="php">
<![CDATA[
<?php
// File 1
echo "Version 1 of application\n";
oci_set_edition('ORA$BASE');
@ -96,6 +99,11 @@ oci_bind_by_name($s, ":r", $r, 20);
oci_execute($s);
echo "The result is $r\n";
?>
<?php
// File 2
echo "Version 2 of application\n";