In PDO, named placeholders in prepared statements start with the symbol ________.
- :param
- $param
- ?param
- @param
In PDO, named placeholders in prepared statements start with a colon (:), so they are typically written as :param.
Loading...
Related Quiz
- You need to handle file uploads in your PHP script, including checking the size and type of the uploaded file and handling any upload errors. How would you do this?
- Which of the following is not a magic constant in PHP?
- You have a PHP script and you need to call a user-defined function using a string variable. How would you do this?
- To access an element of an associative array in PHP, you use the name of the array followed by the ______ of the element in square brackets.
- The PHP interpreter executes comments as part of the script.