使用PDO MySQL进行PHP搜索和分页 - SQLSTATE [42000]:语法错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PDO MySQL进行PHP搜索和分页 - SQLSTATE [42000]:语法错误相关的知识,希望对你有一定的参考价值。
我想弄清楚出了什么问题。
这是我的代码:
<?php
define("ROW_PER_PAGE",2);
require_once("config.php");
?>
<div class="container">
<div class="row">
<div class="col-md-12">
<?
$search_keyword = '';
if(!empty($_POST['search']['keyword'])) {
$search_keyword = $_POST['search']['keyword'];
}
$sql = "SELECT * FROM finance WHERE `name_first` LIKE :keyword ORDER BY `fID` `DESC` ";
/* Pagination Code starts */
$per_page_html = '';
$page = 1;
$start=0;
if(!empty($_POST["page"])) {
$page = $_POST["page"];
$start=($page-1) * ROW_PER_PAGE;
}
try {
$limit=" limit " . $start . "," . ROW_PER_PAGE;
$pagination_statement = $db->prepare($sql);
$pagination_statement->bindValue(':keyword', '%' . $search_keyword . '%', PDO::PARAM_STR);
$pagination_statement->execute();
} catch (PDOException $e) {
echo "Error : Check your error message.";
file_put_contents('PDOErrors.txt', $e->getMessage(), FILE_APPEND);
}
$row_count = $pagination_statement->rowCount();
if(!empty($row_count)){
$per_page_html .= "<div style='text-align:center;margin:20px 0px;'>";
$page_count=ceil($row_count/ROW_PER_PAGE);
if($page_count>1) {
for($i=1;$i<=$page_count;$i++){
if($i==$page){
$per_page_html .= '<input type="submit" name="page" value="' . $i . '" class="btn-page current" />';
} else {
$per_page_html .= '<input type="submit" name="page" value="' . $i . '" class="btn-page" />';
}
}
}
$per_page_html .= "</div>";
}
try {
$query = $sql.$limit;
$pdo_statement = $db->prepare($query);
$pdo_statement->bindValue(':keyword', '%' . $search_keyword . '%', PDO::PARAM_STR);
$pdo_statement->execute();
$result = $pdo_statement->fetchAll();
} catch (PDOException $e) {
echo "Error : Check your error message.";
file_put_contents('PDOErrors.txt', $e->getMessage(), FILE_APPEND);
}
?>
<form name='frmSearch' action='' method='post'>
<div style='text-align:right;margin:20px 0px;'><input type='text' name='search[keyword]' value="<?php echo $search_keyword; ?>" id='keyword' maxlength='25'></div>
<table class='tbl-qa'>
<thead>
<tr>
<th class='table-header' width='20%'>First Name</th>
<th class='table-header' width='40%'>Last Name</th>
<th class='table-header' width='20%'>Birth Date</th>
</tr>
</thead>
<tbody id='table-body'>
<?php
if(!empty($result)) {
foreach($result as $row) {
?>
<tr class='table-row'>
<td><?php echo $row['name_first']; ?></td>
<td><?php echo $row['name_last']; ?></td>
<td><?php echo $row['birth_date']; ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
<?php echo $per_page_html; ?>
</form>
</div>
</div>
</div>
我收到错误消息说... SQLSTATE [42000]:语法错误或访问冲突:1064您的SQL语法有错误;检查与mysql服务器版本对应的手册,以便在第1行的“DESC
”附近使用正确的语法
我知道一些旧式的mysql代码,但我是PDO的初学者。
你能告诉我有什么问题/在哪里修理我的代码吗?
PHP:5.6
MySQL:5.6.37
我非常感谢你的帮助。
谢谢。
答案
请从DESC部分删除`,它应该工作。
以上是关于使用PDO MySQL进行PHP搜索和分页 - SQLSTATE [42000]:语法错误的主要内容,如果未能解决你的问题,请参考以下文章