php错误中的分页

时间:2010-05-03 19:56:51

标签: php html pagination

我在一个名为 class.pagination.php 的单独文件中为search.php页面实现了this pagination class,但是当我执行搜索页面时,没有任何反应。它只显示一个空白页面。

这是我的search.php文件,我在这里调用这个类:

    <?php


    include 'config.php';
    require ('class.pagination.php');


    $search_result = "";

    $search_result = $_GET["q"];
    $search_result = trim($search_result);

    //Check if the string is empty
    if ($search_result == "") {
      echo  "<p class='error'>Search Error. Please Enter Your Search Query.</p>" ;
      exit();
          }


   //search query for multiple keywords 
    if(!empty($search_result))
    {
      // the table to search
      $table = "thquotes";
      // explode search words into an array
      $arraySearch = explode(" ", $search_result);
      // table fields to search
      $arrayFields = array(0 => "cQuotes");
      $countSearch = count($arraySearch);
      $a = 0;
      $b = 0;
      $query = "SELECT cQuotes, vAuthor, cArabic, vReference FROM ".$table." WHERE (";
      $countFields = count($arrayFields);
      while ($a < $countFields)
      {
        while ($b < $countSearch)
        {
          $query = $query."$arrayFields[$a] LIKE '%$arraySearch[$b]%'";
          $b++;
          if ($b < $countSearch)
          {
            $query = $query." AND ";
          }
        }
        $b = 0;
        $a++;
        if ($a < $countFields)
        {
          $query = $query.") OR (";
        }
      }
      $query = $query.")";
      $result = mysql_query($query, $conn)
      or die ('Error: '.mysql_error());

      $totalrows = mysql_num_rows($result);

      if($totalrows < 1)
      {
        echo '<span class="error2">No matches found for "'.$search_result.'"</span>';
      }
      else
      {

    ?>

    <div class="caption">Search Results</div>
    <div class="center_div">
    <table>
        <?php while ($row= mysql_fetch_array($result, MYSQL_ASSOC)) {
            $cQuote =  highlightWords(htmlspecialchars($row['cQuotes']), $search_result);
            ?>
            <tr>
            <td style="text-align:right; font-size:15px;"><?php h($row['cArabic']); ?></td>
                <td style="font-size:16px;"><?php echo $cQuote; ?></td>
                <td style="font-size:12px;"><?php h($row['vAuthor']); ?></td>
                <td style="font-size:12px; font-style:italic; text-align:right;"><?php h($row['vReference']); ?></td>
            </tr>
        <?php } ?>
    </table>
    </div>

    <?php
    }
    }
    else {
        exit();
    }

    //Setting Pagination
    $pagination = new pagination();
    $pagination->byPage = 5;
    $pagination->rows = $totalrows; // number of records in a table-back mysql_num_rows () instance or another, you have to play
    $from = $pagination->fromPagination(); // sql used for applications such LIMIT $ from, $ pagination-> byPage
    $pages = $pagination->pages();

    if(isset($pages)) {?>
    <div class="pagination">
        <?foreach ($pages as $key){?>
        <?if($key['current'] == 1) {?>
        <a href="?p=<?=$key['p']?>" class="active"><?=$key['page']?></a>
        <?} else {?>
        <a href="?p=<?=$key['p']?>" class="inactive"><?=$key['page']?></a>
        <?}?>
        <?}?>
    </div>
    <?}
    //End Pagination
    ?>

2 个答案:

答案 0 :(得分:1)

一开始您需要class.pagination.php,但在您的博客上,文件名为pagination.class.php。这是问题吗?

答案 1 :(得分:0)

在包含之前尝试echo