Tablo kullanıcıya bir satır ekleyen bir işlevi oluşturmak için son php kullanarak.
class targil_db {
private $_pdo;
public function __construct() {
// username: root password: <blank> database: targil
$this->_pdo = new PDO(
'mysql:host=127.0.0.1;dbname=targil',
'root',
''
);
}
function addUser($username, $password) {
$md5password = md5($password);
$sql = <<<SQL
"INSERT INTO user (username,password) VALUES (:username,:password)"
SQL;
$stmt = $this->_pdo->prepare($sql);
$stmt->bindValue(':username', $username,PDO::PARAM_STR);
$stmt->bindValue(':password', $password,PDO::PARAM_STR);
$stmt->execute();
}
}
i adduser işlevini çalıştırdığınızda, bu i mysql günlük dosyasında idam görmek sorgu:
INSERT INTO user (username,password) VALUES (:username,:password)
as you can see it did not replace the :varname into the proper value. what am i missing ?
Ben bindValue ve bindParam hem çalıştı ama ben aynı sonuçları var.
update
even when i change :username
and :password
to ?,?
and i use
bindValue(1,$username)
and bindValue(2,$password)
i get the same results.
the query that get executed actually still has ?,?
in it instead of the actual variables.