最初のページに検索バーがあり、結果はページネーション付きの 2 ページ目に表示されます。問題は、ページネーションが機能していない$_GET
か、$_POST
可変であることです。
私が意味したのは、フォームが送信されたときのようなもので、2ページ目のURLが次のように変わります
products.php?search=something
表示される結果を見ることができます。
ただし、ページネーションの次のボタンを押すと、取得undefined index search error
した URL が次のように変わりますproducts.php?page=2
$_GET['search'];
ページ番号が変更されたときに使用できるように、値を保存する方法はありますか?
<form action="products.php" method="post">
<input type="text" name="search">
<input type="Submit">
</form>
製品.php
<?php
/*
* Connect to the database (Replacing the XXXXXX's with the correct details)
*/
try
{
$dbh = new PDO('mysql:host=localhost;dbname=db', 'root', '');
}
catch(PDOException $e)
{
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
/*
* Get and/or set the page number we are on
*/
if(isset($_GET['page']))
{
$page = $_GET['page'];
}
else
{
$page = 1;
}
/*
* Set a few of the basic options for the class, replacing the URL with your own of course
*/
$options = array(
'results_per_page' => 100,
'url' => 'products.php?page=*VAR*',
'db_handle' => $dbh
);
$q = $_GET['search'];
/*
* Create the pagination object
*/
try
{
$paginate = new pagination($page, "SELECT * FROM products where title LIKE '%$q%' order by id desc", $options);}
catch(paginationException $e)
{
echo $e;
exit();
}
if($paginate->success == true)
{
$paginate_result = $paginate->resultset->fetchAll();
foreach($paginate_result as $row)
{
echo $row['title'];
}
?>
<?php echo "<li>"; //this is next and prev button for the pagination class if results exceed the limit.
echo $ball->links_html;
echo "</li>"; ?>