Results 1 to 10 of 10
Threaded View
-
28th Mar 2012, 01:42 PM #1OPMemberWebsite's:
WarezRocker.info Share4U.org Imdb.WarezRocker.info DownTurko.org Host-Palace.com HeroTurko.proFilemanager In php (HELP)
i am making a php based filemanager but getting some problem,i am trying to show all files from a directory with checkbox system and in a table,but if only 1 file is stored in the directory then its ok but if many files then its not fit in the table list.i need help,please guys.
my code is:
PHP Code:<?php
$filespath = dirname(__FILE__)."/files/";
if ($dir = opendir($filespath))
{
$images = array();
while (false !== ($file = readdir($dir)))
{
if ($file != "." && $file != "..")
{
$images[] = $file;
}
}
?>
<div id="filelist">
<table width="400px" align="center">
<tr><td>Click</td><td>Files</td><td>File Size</td></tr>
<?
foreach($images as $image)
{
?>
<tr><td><input type="checkbox" name="files[]" value="<? echo $image;?>" /></td><td><? echo $image;?></td><td><? echo filesize($filespath.$image)."KB";?></td></tr>
</table>
</div>
<?
}
closedir($dir);
}
?>saninokia Reviewed by saninokia on . Filemanager In php (HELP) i am making a php based filemanager but getting some problem,i am trying to show all files from a directory with checkbox system and in a table,but if only 1 file is stored in the directory then its ok but if many files then its not fit in the table list.i need help,please guys. my code is: <?php $filespath = dirname(__FILE__)."/files/"; if ($dir = opendir($filespath)) { $images = array(); while (false !== ($file = readdir($dir))) Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Rapidshare Filemanager [How to see more than 3000 Files in Filemanager]
By astalavistia in forum Webmaster DiscussionReplies: 6Last Post: 16th May 2012, 10:06 PM -
public filemanager script
By rajeshjsl in forum Webmaster DiscussionReplies: 3Last Post: 24th Feb 2011, 04:43 PM -
PHP script to grab all files from MU filemanager
By Yawn92 in forum Webmaster ResourcesReplies: 2Last Post: 31st Jul 2010, 06:03 PM
themaCreator - create posts from...
Version 3.53 released. Open older version (or...