Mysql
 sql >> Database >  >> RDS >> Mysql

Utilizzo delle funzioni MySQL nelle istruzioni preparate da PHP PDO

Non passerei funzioni come parametri associati:

$sth = $dbh->prepare("INSERT INTO pdo (namespace, count, teststring) VALUES (?, ?, NOW())");

$_a = 'Wishy-washy';
$_b = 123;

$sth->execute(array($_a, $_b));