Voting

: seven minus three?
(Example: nine)

The Note You're Voting On

me25show at gmail dot com
6 years ago
bind using example:
<?php
try {
$session = mysql_xdevapi\getSession("mysqlx://user:password@host");
} catch(
Exception $e) {
die(
"Connection could not be established: " . $e->getMessage());
}
$stmt = $session->sql("SELECT * FROM table WHERE id=? AND data=?");
$stmt->bind(1);
$stmt->bind("data");
$result = $stmt->execute();

?>

<< Back to user notes page

To Top