Jump to content

[SOLVED] align text and searching files


davidjmorin

Recommended Posts

hey eveyone i have one last thing that i need an answer to.

i would like to align my following code so that it sets it to the left side of the ;page. ive tried a few things but didnt work. also i would like to have it so that it only searches for picture and movie files. how would this be accomplished? thank you so much for any help

 

 

<?php
$dir = 'ajaxfiles';
$handle = opendir($dir);
while ($file = readdir($handle)) {
  if (substr($file, 0, 1) !== '.'){
    echo "<li><a href=\"" . $file . "\">" . $file . "</a></li>\n";
  }
}
closedir($handle);
?>

Link to comment
https://forums.phpfreaks.com/topic/72617-solved-align-text-and-searching-files/
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.