Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-12-2003, 07:53 PM   PM User | #1
Bengal313
Regular Coder

 
Bengal313's Avatar
 
Join Date: Jun 2002
Location: Metro Detroit
Posts: 298
Thanks: 8
Thanked 0 Times in 0 Posts
Bengal313 is an unknown quantity at this point
How to make links using folder content?

I have a php page that takes in a list of files (image files) from a directory and lists them. I wanted to know is there a way for me to create links using this list? Here is my code.


<?php
$dir = "testimages/";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
print "$file";
print "<br>";
}
closedir($dh);
}
}
?>
__________________
"Knowledge Speaks But Wisdom Listens"

Last edited by Bengal313; 12-12-2003 at 08:14 PM..
Bengal313 is offline   Reply With Quote
Old 12-12-2003, 08:11 PM   PM User | #2
Nightfire
Senior Coder

 
Nightfire's Avatar
 
Join Date: Jun 2002
Posts: 4,266
Thanks: 6
Thanked 48 Times in 48 Posts
Nightfire is on a distinguished road
Try changing
PHP Code:
print "$file"
to
PHP Code:
print "<a href=\"" $file "\">" $file "</a>"
__________________
Blue Panda
Website Design | 1 Pound Ads | 'ow much? | Coding Geeks
Nightfire is offline   Reply With Quote
Old 12-12-2003, 08:17 PM   PM User | #3
Bengal313
Regular Coder

 
Bengal313's Avatar
 
Join Date: Jun 2002
Location: Metro Detroit
Posts: 298
Thanks: 8
Thanked 0 Times in 0 Posts
Bengal313 is an unknown quantity at this point
Thank you very much for that fast response! One currently I am accessing a folder that is in a sub directory, "/testimages". How would I access a folder that is on the same server (SUSE) but is four levels above the php page directory? I tried using ../, but didn't work.
__________________
"Knowledge Speaks But Wisdom Listens"

Last edited by Bengal313; 12-12-2003 at 08:20 PM..
Bengal313 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 06:39 AM.


Advertisement
Log in to turn off these ads.