Jump to content

PHP file listing


digitalrjs

Recommended Posts

I'm trying to list 3 files from a directory of 10 or 20 files.  I just want to display only three with a limit amount of characters.

 

 

This is the code I have so far but it list all the files.

 

 

<?php



echo "";




//The path to the style directory
$dirpath = "pdf/";
$dl = opendir($dirpath);
while (false !== ($file = readdir($dl))) {

//admit sub directories
if (!is_dir("$dirpath/$file")) {

echo "$file";
}
}
closedir($dl);
//Close Select

?>

 

 

I was thinking adding a while loop and putting

$file

in an array.  How can I display them in a list of 3 and with limit charactors.  I can do this in asp but I love php. :)

Link to comment
https://forums.phpfreaks.com/topic/121891-php-file-listing/
Share on other sites

look

<?php
$count = 0;
echo "";
//The path to the style directory
$dirpath = "pdf/";
$dl = opendir($dirpath);
while ($file = readdir($dl) and $count < 3) {
//admit sub directories
if (!is_dir("$dirpath/$file")) {
	if (strlen($file) < 7){
		echo "$file";
		$count++;
	}
}
}
closedir($dl);
//Close Select
?>

Link to comment
https://forums.phpfreaks.com/topic/121891-php-file-listing/#findComment-628940
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.