Search found 4 matches
- Thu Dec 25, 2003 10:52 pm
- Forum: PHP - Code
- Topic: script to list directories won't work
- Replies: 1
- Views: 993
script to list directories won't work
Hey, yeah, I'm writing a script to list the files and subdirectories of a directory (it's like a tree command). The code is <?php function listDir($r00t, $tab) { if(is_dir($r00t)) { $n = 0; if(!($dh = opendir($r00t))) echo "Failed to open directory $r00t <br>"; else while...
- Thu Dec 25, 2003 11:21 am
- Forum: PHP - Code
- Topic: Help with image processing
- Replies: 5
- Views: 330
- Wed Dec 24, 2003 9:14 pm
- Forum: PHP - Code
- Topic: Help with image processing
- Replies: 5
- Views: 330
- Wed Dec 24, 2003 11:46 am
- Forum: PHP - Code
- Topic: Help with image processing
- Replies: 5
- Views: 330
Help with image processing
Hi, I'm trying to write a script that graphs my site traffic data for me. I'm not familiar with imaging with php, so I'm just playing around right now. First, I ran the phpinfo and verfied that gd is supported: gd GD Support enabled GD Version 1.6.2 or higher WBMP Support enabled So I practically co...