200-550 Web TestEngine demo

Exit VCEDump 200-550 Zend Certified PHP Engineer
Question 12 of 34
0% complete
Q12 Single choice

Consider the following table data and PHP code. What is the outcome?

Table data (table name "users" with primary key "id"):

id name email
------- ----------- -------------------
1 anna [email protected]
2 betty [email protected]
3 clara [email protected]
5 sue [email protected]

PHP code (assume the PDO connection is correctly established):

$dsn = 'mysql:host=localhost;dbname=exam';
$user = 'username';
$pass = '********';
$pdo = new PDO($dsn, $user, $pass);

try {
$cmd = "INSERT INTO users (id, name, email) VALUES (:id, :name, :email)"; $stmt = $pdo->prepare
($cmd);
$stmt->bindValue('id', 1);
$stmt->bindValue('name', 'anna');
$stmt->bindValue('email', '[email protected]');
$stmt->execute();
echo "Success!";
}
catch (PDOException $e) {
echo "Failure!";
throw $e;
}

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in