私は、基本的にmysqlからデータを取得し、phpを介して表示するいくつかのコードで、あちこちで少しやっています。結果はページに一度に 3 つずつ表示されますが、問題は一度もありません。
しかし、最近、データベース項目に「売り切れ」と「在庫あり」というフィールドを追加し、(悲惨なことに) 2 つの検索を実行しようとしています。最初に在庫のある項目を表示し、次に売り切れた項目を表示したいと考えています。 . 残念ながら、私が何年も使用してきたページネーション コードは、2 つの php クエリを実行するのが好きではなく、ページに 3 つの項目を追加するだけです (該当する場合)。
完全なコードは次のとおりです。
<form name="form1" method="get" action="products.php">
<?php
if(!empty($msg)) {
echo $msg[0];
}
?>
<input name="q" class="textInput2" input type="search" id="q" placeholder="search image name..." autosave="applestyle_srch" results="5" onKeyUp="applesearch.onChange('srch_fld','srch_clear')" />
<input name="doSearch" type="hidden" id="doSearch2" value="Search">
<?php if ($get['doSearch'] == 'Search') {
// find out how many rows are in the table
$sql = "SELECT COUNT(*) FROM products";
$result = mysql_query($sql) or trigger_error("SQL", E_USER_ERROR);
$r = mysql_fetch_row($result);
$numrows = $r[0];
// number of rows to show per page
$rowsperpage = 3;
// find out total pages
$totalpages = ceil($numrows / $rowsperpage);
// get the current page or set a default
if (isset($_GET['currentpage']) && is_numeric($_GET['currentpage'])) {
// cast var as int
$currentpage = (int) $_GET['currentpage'];
} else {
// default page num
$currentpage = 1;
} // end if
// if current page is greater than total pages...
if ($currentpage > $totalpages) {
// set current page to last page
$currentpage = $totalpages;
} // end if
// if current page is less than first page...
if ($currentpage < 1) {
// set current page to first page
$currentpage = 1;
} // end if
// the offset of the list, based on current page
$offset = ($currentpage - 1) * $rowsperpage;
if($get['q'] == '') {
$sql = "SELECT * FROM products WHERE status='sold' ORDER BY `price` ASC LIMIT $offset, $rowsperpage";
}
else {
$sql = "select * from products where `title` like '%$_REQUEST[q]%' LIMIT $offset, $rowsperpage";
}
$result1 = mysql_query($sql) or trigger_error("SQL", E_USER_ERROR);
if($get['q'] == '') {
$sql = "SELECT * FROM products WHERE status='in stock' ORDER BY `price` ASC LIMIT $offset, $rowsperpage";
}
else {
$sql = "select * from products where `title` like '%$_REQUEST[q]%' LIMIT $offset, $rowsperpage";
}
$result2 = mysql_query($sql) or trigger_error("SQL", E_USER_ERROR);
?></form></div>
<div id="pagination" style="float:right; display:inline; margin-right:10px;">
page:<?php
/****** build the pagination links ******/
// if not on page 1, don't show back links
if ($currentpage > 1) {
// show << link to go back to page 1
echo " <a href='{$_SERVER['PHP_SELF']}?q=&doSearch=Search¤tpage=1'><<</a> ";
// get previous page num
$prevpage = $currentpage - 1;
// show < link to go back to 1 page
echo " <a href='{$_SERVER['PHP_SELF']}?q=&doSearch=Search¤tpage=$prevpage'><</a> ";
} // end if
// range of num links to show
$range = 3;
// loop to show links to range of pages around current page
for ($x = ($currentpage - $range); $x < (($currentpage + $range) + 1); $x++) {
// if it's a valid page number...
if (($x > 0) && ($x <= $totalpages)) {
// if we're on current page...
if ($x == $currentpage) {
// 'highlight' it but don't make a link
echo " [<b>$x</b>] ";
// if not current page...
} else {
// make it a link
echo " <a href='{$_SERVER['PHP_SELF']}?q=&doSearch=Search¤tpage=$x'>$x</a> ";
} // end else
} // end if
} // end for
// if not on last page, show forward and last page links
if ($currentpage != $totalpages) {
// get next page
$nextpage = $currentpage + 1;
// echo forward link for next page
echo " <a href='{$_SERVER['PHP_SELF']}?q=&doSearch=Search¤tpage=$nextpage'>></a> ";
// echo forward link for lastpage
echo " <a href='{$_SERVER['PHP_SELF']}?q=&doSearch=Search¤tpage=$totalpages'>>></a> ";
} // end if
/****** end build pagination links ******/
?>
</div>
</div>
</div>
</div></p>
<div class="category-products">
<form name "searchform" action="products.php" method="post">
<?php while($rrows = mysql_fetch_array($result2))
{
echo '<div><div id="searchimage"><a class="product-image" href="productspec.php?productcode=' . $rrows['productcode'] . '" title="' . $rrows['title'] . '">';
echo '<img src="' . $rrows['photo'] . '" width="225" height="150" alt="" title="' . $rrows['title'] . '" /></a></div>';
echo '<div id="searchdetails">
<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>
<td height="30"><h3 class="product-name"><a href="productspec.php?productcode=' . $rrows['productcode'] . '" title="' . $rrows['title'] . '">' . $rrows['title'] . '</a></h3>';
echo '</td>
</tr>
<tr>
<td>' . $rrows['desc'] . '';
echo '</td>
</tr>
<tr>
<td><h3 class="price">£' . $rrows['price'] . ' ' . $rrows['pandp'] . '</h3>'; echo '</td>
</tr>
</table></div>';
echo '</div>';
}
?>
<?php while($rrows = mysql_fetch_array($result1))
{
echo '<div><div id="searchimage"><a class="product-image" href="productspec.php?productcode=' . $rrows['productcode'] . '" title="' . $rrows['title'] . '">';
echo '<img src="' . $rrows['photo'] . '" width="225" height="150" alt="" title="' . $rrows['title'] . '" /><img src="soldout.png" id="soldout" /></a></div>';
echo '<div id="searchdetails">
<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>
<td height="30"><h3 class="product-name"><a href="productspec.php?productcode=' . $rrows['productcode'] . '" title="' . $rrows['title'] . '">' . $rrows['title'] . '</a></h3>';
echo '</td>
</tr>
<tr>
<td>' . $rrows['desc'] . '';
echo '</td>
</tr>
<tr>
<td><h3 class="price">£' . $rrows['price'] . ' ' . $rrows['pandp'] . '</h3>'; echo '</td>
</tr>
</table></div>';
echo '</div>';
}
?>
</form> <?php } ?>
コードがよりきれいになる可能性があることは十分に理解できます-(ページネーションプロセスは常に機能しているため、何年も修正していません)-しかし、テーブル内のすべてのアイテムを表示するより簡単な方法が必要であると想定しています$result1 クエリと $result2 クエリの両方を実行します。
どんな助けでも大歓迎です!!
JD