为什么这个 PHP PDO 片段不起作用?
$DBH = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);
$STH->bindParam(':fftb', $fftb);
$STH->bindParam(':st', $st);
$STH->bindParam(':la', $la);
$STH->bindParam(':cf', $cf);
$STH->bindParam(':total', $total);
$STH = $DBH->prepare("INSERT INTO orders (fftb, st, la, cf, total) VALUES (:fftb, :st, :la, :cf, :total)");
$STH->execute();