diff --git a/reference/pdo/pdostatement/execute.xml b/reference/pdo/pdostatement/execute.xml index 1ae45a6b2b..544963ed17 100644 --- a/reference/pdo/pdostatement/execute.xml +++ b/reference/pdo/pdostatement/execute.xml @@ -85,7 +85,7 @@ $sth->execute(); - Execute a prepared statement with an array of insert values (named parameters) + Execute a prepared statement with an array of named values execute(array(':calories' => $calories, ':colour' => $colour)); - Execute a prepared statement with an array of insert values (placeholders) + Execute a prepared statement with an array of positional values execute(array($calories, $colour)); - Execute a prepared statement with question mark placeholders + Execute a prepared statement with variables bound to positional placeholders