将mysql php join转换为PDO join

前端之家收集整理的这篇文章主要介绍了将mysql php join转换为PDO join 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在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运行它.

但是,您可以尝试使用准备好的语句,并将标题作为参数传递:

$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);
    }
}
原文链接:https://www.f2er.com/mysql/532188.html

猜你在找的MySQL相关文章