我在PHP中使用mysql进行联接,并希望将其转换为pdo查询,我该怎么做?
代码如下:
$query = "SELECT * FROM pages LEFT JOIN templates ON pages.template_id = templates.template_id WHERE pages.page_Title = '".$getVars['page']."'";
我是PDO的新手,所以这听起来像是一个非常基本的问题.
提前致谢
最佳答案
人们为什么甚至不参考PHP参考手册中的这些基本问题?请参阅http://be2.php.net/manual/en/pdo.connections.php.一切都已存在,您无需更改任何查询即可使用PDO运行它.
原文链接:https://www.f2er.com/mysql/532188.html但是,您可以尝试使用准备好的语句,并将标题作为参数传递:
$dbh = new PDO('MysqL:host=localhost;dbname=database',$user,$pass);
$stmt = $dbh->prepare("SELECT * FROM pages LEFT JOIN templates ON pages.template_id = templates.template_id WHERE pages.page_Title = ?");
if ($stmt->execute(array($getVars['page']))) {
while ($row = $stmt->fetch()) {
print_r($row);
}
}