I want to make it so that the directories are formatted in a certain way and that the files Are formatted another way. over ftp. Here is my code so far it just dosen't seem to work.
<?
$connect = ftp_connect("192.168.1.100");
ftp_login($connect, "johnhass", "kristin");
foreach(ftp_nlist($connect, ".") as $line)
{
if(is_file($line)){
echo "<font = 'red'>$line</font><br>";
} elseif (is_dir($line)){
echo "      $nbsp $line <br>";
}else{
} print "No Files to Display";
}
?>