0

このページは、テーブル内のクエリ結果で完全に読み込まれます。ページネーションが適切に配置されており、レコード数ごとにページが正しく分割されています。このページには、表とは関係のない他の項目があります。2 番目のページに移動しようとすると、他のレコードのないヘッダー行のみが取得され、最初にクエリがなかったように、他の情報が未定義のインデックスとしてページに表示されます。私は答えを求めて Web を検索しましたが、この問題を解決するために持っている限られた知識を使い果たしました。私がやりたいのは、mysql データベースからのクエリ結果をページ分割し、ユーザーがページを変更するたびにのみテーブルを更新することだけです。これを行うためにajaxとjqueryを見てきましたが、コードに何をどのように実装するかを理解できません。ページの更新の問題については理解できますが、とにかくページネーションが機能すると想定していました。以下は、誰かがエラーを指摘したり、これを機能させるための最善の方法を提案したりできる場合に私が持っているコードです。

$brandname = $_GET['brandname'];
$picked = $_GET['picked'];
$pickcheck = $_GET['pickcheck'];


$brands =($brandname);
$_SESSION['$brandname']= $brandname;
$pick =($picked);
$_SESSION['$picked']= $pick;
$picker =($pickcheck);
$_SESSION['$pickcheck']=$picker;

$tbl_name="pickme";
$adjacents = 3;

$query = "SELECT COUNT(*) as num FROM tirestock";
$total_pages = mysql_fetch_array(mysql_query($query));
$total_pages = $total_pages["num"];

$targetpage = "connecttest.php";    //your file name  (the name of this file)
$limit = 5;                                 //how many items to show per page
$page = (isset($_GET['page'])) ? (int)$_GET['page'] : 1;
$page=mysql_real_escape_string($page);
$page = $_GET['page'];
if($page)
    $start = ($page - 1) * $limit;          
else
    $start = 0;

$sql = "SELECT * FROM tirestock LIMIT $start, $limit";
$result = mysql_query($sql);

if ($page == 0) $page = 1;
$prev = $page - 1;
$next = $page + 1;
$lastpage = ceil($total_pages/$limit);
$lpm1 = $lastpage - 1;

$pagination = "";
if($lastpage > 1)
{
    $pagination .= "<div class=\"pagination\">";

    if ($page > 1)
        $pagination.= "<a href=\"$targetpage?page=$prev\">« previous</a>";
    else
        $pagination.= "<span class=\"disabled\">« previous</span>";

    //pages
    if ($lastpage < 7 + ($adjacents * 2))
    {
        for ($counter = 1; $counter <= $lastpage; $counter++)
        {
            if ($counter == $page)
                $pagination.= "<span class=\"current\">$counter</span>";
            else
                $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
        }
    }
    elseif($lastpage > 5 + ($adjacents * 2))
    {

        if($page < 1 + ($adjacents * 2))
        {
            for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)
            {
                if ($counter == $page)
                    $pagination.= "<span class=\"current\">$counter</span>";
                else
                    $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
            }
            $pagination.= "...";
            $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
            $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";
        }

        elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2))
        {
            $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
            $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
            $pagination.= "...";
            for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++)
            {
                if ($counter == $page)
                    $pagination.= "<span class=\"current\">$counter</span>";
                else
                    $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
            }
            $pagination.= "...";
            $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
            $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";
        }

        else
        {
            $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
            $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
            $pagination.= "...";
            for ($counter = $lastpage - (2 + ($adjacents * 2)); $counter <= $lastpage; $counter++)
            {
                if ($counter == $page)
                    $pagination.= "<span class=\"current\">$counter</span>";
                else
                    $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";
            }
        }
    }


    if ($page < $counter - 1)
        $pagination.= "<a href=\"$targetpage?page=$next\">next »</a>";
    else
        $pagination.= "<span class=\"disabled\">next »</span>";
    $pagination.= "</div>\n";
}
4

2 に答える 2

0

冗長なコードがたくさんあるので、最初にクリーンアップして、問題と関係があるかどうかを確認します。

最初の問題:割り当てとチェックが多すぎる$page

$page = (isset($_GET['page'])) ? (int)$_GET['page'] : 1;
$page=mysql_real_escape_string($page);
$page = $_GET['page'];
if($page)
    $start = ($page - 1) * $limit;          
else
    $start = 0;

if ($page == 0) $page = 1;

たとえば、次のようにする必要があります。

$page = isset($_GET['page']) ? max((int)$_GET['page'], 1) : 1;
$start = ($page - 1) * $limit;

これで、設定されているかどうか、0 などを確認する必要がなくなりました。

2 番目の問題:$_GET他の変数または変数を使用している場所がわかりませんが、ページネーションを通じてそれらを保持したい場合は、それらをページネーション URL に追加するか、何も設定されていない場合は空の変数$_SESSIONでセッションを上書きしないでください。$_GET

于 2012-06-16T00:56:34.910 に答える
-1
<?php 

if($nume > $limit ){ // Let us display bottom links if sufficient records are there for paging

/////////////// Start the bottom links with Prev and next link with page numbers /////////////////
echo "<table align = 'center' width='50%'><tr><td  align='left' width='30%'>";
//// if our variable $back is equal to 0 or more then only we will display the link to move back ////////
if($back >=0) { 
print '<a href="'.$page_name.'?start='.$back.'&sex='.$field.'&searching=yes&find='.$find.'"><font face="Verdana" size="2">PREV</font></a>'; 
} 
//////////////// Let us display the page links at  center. We will not display the current page as a link ///////////
echo "</td><td align=center width='30%'>";
$i=0;

$l=1;

for($i=0;$i < $nume;$i=$i+$limit){
if($i <> $eu){
echo '<a href="'.$page_name.'?start='.$i.'&sex='.$field.'&searching=yes&find='.$find.'"><font face="Verdana" size="2">'.$l.'</font></a> ';
}
else { echo "<font face='Verdana' size='4' color=red> ".$l."</font>";}        /// Current page is not displayed as link and given font color red

$l=$l+1;
}

echo "</td><td  align='right' width='30%'>";
///////////// If we are not in the last page then Next link will be displayed. Here we check that /////
if($this1 < $nume) { 
print '<a href="'.$page_name.'?start='.$next.'&sex='.$field.'&searching=yes&find='.$find.'"><font face="Verdana" size="2">NEXT</font></a>';} 
echo "</td></tr></table>";

}// end of if checking sufficient records are there to display bottom navigational link. 
}  

?>
于 2014-04-25T09:32:23.683 に答える