mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Fix #81073: bad example titles for PDOStatement::execute
Closes GH-621.
This commit is contained in:
parent
ecf8d0250e
commit
91bec719b3
1 changed files with 3 additions and 3 deletions
|
@ -85,7 +85,7 @@ $sth->execute();
|
|||
</programlisting>
|
||||
</example>
|
||||
|
||||
<example><title>Execute a prepared statement with an array of insert values (named parameters)</title>
|
||||
<example><title>Execute a prepared statement with an array of named values</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
@ -101,7 +101,7 @@ $sth->execute(array(':calories' => $calories, ':colour' => $colour));
|
|||
</programlisting>
|
||||
</example>
|
||||
|
||||
<example><title>Execute a prepared statement with an array of insert values (placeholders)</title>
|
||||
<example><title>Execute a prepared statement with an array of positional values</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
@ -117,7 +117,7 @@ $sth->execute(array($calories, $colour));
|
|||
</programlisting>
|
||||
</example>
|
||||
|
||||
<example><title>Execute a prepared statement with question mark placeholders</title>
|
||||
<example><title>Execute a prepared statement with variables bound to positional placeholders</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
|
Loading…
Reference in a new issue