Simple question (I think). I used system function to display files in a directory.
system('ls images/');
And it works as advertised with 2 files present:
201.jpg thumb_201.jpg
Now how do I format it?, ie:
Thanks, Eve
not so sure that you can, you could use ls -l, that would make them one under the other, but then showing more than just the filename too
humm, why not just use the dir() funtion?
http://www.php.net/manual/en/class.dir.php
Thanks for the help, dir() did it just fine!