我有一個非常複雜的腳本,它不能完全與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> ';
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> ';
echo '<em class="normal">' . $user_id . '</em><br>';
}
echo '<br>';
$flag = true;
}
?>
<a href="<?php echo $home_action; ?>"><span class="button-sub">« Back to Index</span></a>
<?php echo '</div>'; ?>
<?php include('includes/footer_alt.php'); ?>
現在我沒有任何簡單的線索如何開始打破我的成果轉化爲網頁。我在這裏工作的結果超過12000個,頁面加載需要很多,我需要幫助將這個大的結果分解成頁面。
任何人都願意幫助我嗎?至少給我一個線索如何開始?我會很感激。
非常感謝您的閱讀。
這會是任何使用你的? http://stackoverflow.com/questions/5105810/view-files-in-directory-with-pagination-php – 2012-08-11 14:30:32
我會嘗試從中得到一些東西。將回報。謝謝。 – Aborted 2012-08-11 14:46:13
似乎無法使您的鏈接得到這個東西。 :\ – Aborted 2012-08-11 15:15:10