2012-08-11 50 views
1

我有一個非常複雜的腳本,它不能完全與MySQL一起工作,但它的確有部分功能。讓我試着解釋...我的情況分頁?

我的網頁的結果純粹是從一個特定的文件夾圖像名稱,意味着我用這個函數來得到我的結果:

function get_all_images($dir) 
{ 
    $dir = opendir($dir); 
    $dirArray = array(); 

    while($entryName = readdir($dir)) 
    { 
     if(($entryName != ".") && ($entryName != "..") && ($entryName != ".svn") && ($entryName != ".htaccess")) 
     { 
      $dirArray[] = $entryName; 
     } 
    } 

    closedir($dir); 
    (sizeof($dirArray)) ? arsort($dirArray) : ''; 

    return (is_array($dirArray)) ? $dirArray : ''; 
} 

這是怎麼了我基本上得到的結果在我的網頁:

<?php 
include('includes/header.php'); 
    $images = get_all_images('i'); 

    $url = str_replace('www.', '', generate_site_url()); 
    $flag = false; 
    $count = 0; 

    if (empty($images)) 
    { 
     echo '<h2>There are no uploaded images</h2><br>'; 
    } 

    foreach ($images as $image) 
    { 
     $filename = $image_name = $image; 
     $image_link = $url . IMAGES_PATH . $filename; 
     $user_id = fetch_user_id($image_link); 

     $delete_link  = (isset($_POST['delete_link'])) ? $_POST['delete_link'] : ''; 
     $delete_image  = (isset($_POST['delete_image'])) ? $_POST['delete_image'] : ''; 

     if ($delete_admin_submit) 
     { 
      unlink('./t/' . $delete_image); 
      unlink('./t/big' . $delete_image); 
      adminDelete('./i/' . $delete_image, $delete_link); 
      header('Location: ' . $imgit_action); 
      exit(); 
     } 

     echo '<div class="' . ($count++ % 2 ? "odd-color" : "even-color") . '">'; 
      echo '<table>'; 
      echo '<tr><td class="fullwidth"><a class="preview_img" href="' . $image_link . '"><img src="' . $image_link . '" title="Click to enlarge" width="300" class="thumb" /></a></td></tr>'; 

      echo '<tr><td><span class="default">Direct link:</span>&nbsp;'; 
      echo '<input type="text" readonly="readonly" class="link-area" onmouseover="this.select();" value="' . $image_link . '" />'; 
      echo '<form method="post" action="" onsubmit="return confirmSingleDeletion();" style="display: inline;"> '; 
      echo '<input type="submit" class="icon_delete" name="delete_link" value="' . $image_link . '" title="Delete this image" />'; 
      echo '<input type="hidden" name="delete_image" value="' . $image_name . '" />'; 
      echo '</form>'; 
      echo '</td></tr>'; 

      echo ($flag) ? '<hr /><br>' : ''; 

      echo '</table>'; 
      if (!empty($user_id)) 
      { 
       echo '<br><strong class="normal">Uploader ID:</strong>&nbsp;'; 
       echo '<em class="normal">' . $user_id . '</em><br>'; 
      } 
      echo '<br>'; 

     $flag = true; 
    } 
    ?> 
    <a href="<?php echo $home_action; ?>"><span class="button-sub">&laquo; Back to Index</span></a> 
    <?php echo '</div>'; ?> 
<?php include('includes/footer_alt.php'); ?> 

現在我沒有任何簡單的線索如何開始打破我的成果轉化爲網頁。我在這裏工作的結果超過12000個,頁面加載需要很多,我需要幫助將這個大的結果分解成頁面。

任何人都願意幫助我嗎?至少給我一個線索如何開始?我會很感激。

非常感謝您的閱讀。

+0

這會是任何使用你的? http://stackoverflow.com/questions/5105810/view-files-in-directory-with-pagination-php – 2012-08-11 14:30:32

+0

我會嘗試從中得到一些東西。將回報。謝謝。 – Aborted 2012-08-11 14:46:13

+0

似乎無法使您的鏈接得到這個東西。 :\ – Aborted 2012-08-11 15:15:10

回答

0

考慮您的數組你收集了文件名,但你已經整理後他們:

$imgs = array(
0 => 'image1.jpg', 
1 => 'image2.jpg', 
2 => 'image3.jpg', 
3 => 'image4.jpg', 
4 => 'image5.jpg', 
5 => 'image6.jpg', 
6 => 'image7.jpg', 
7 => 'image8.jpg', 
); 
// create some vars which you can use in your pagination 
$perpage = 3 ; 
$page=2; 
$range_end = ($perpage*$page)-1; 
$range_start = ($perpage*($page-1)); 
$display=range($range_start,$range_end); 

// loop through results 
foreach($display as $show){ 
echo $imgs[$show]; 
} 

這是否讓你開始?

+0

請解釋你是如何創建實際分頁的(數字:1,2,3等,具體取決於你想要每頁有多少結果以及你有多少結果) – Aborted 2012-08-11 19:37:09

+0

哦,如果有可能給我看一個與我上面提供的代碼相關的示例,我不是一個偉大的編碼器,對我來說事情可能會變得很複雜。 – Aborted 2012-08-11 19:55:39

相關問題