HI all
    Im needing Assistance in getting my directory script in working Order ,
 when i click on the link it doesnt show Correct Path in the link
 $directory is directory Files are in
  $files  are the Files it Finds With the PDF extensions
can someone Help me with this line below ,. ?

                echo"<font face=\"Tahoma\" size=\"2\">. <a 
href=\"productdata\AB\1747-SLC5\$file\">$file</a></font><br>";
------------WHOLE SCRIPT--------------------------------------

<?php
$count = 0;
    # open the directory you want to use
    $directory = opendir("./1747-SLC5");
    # Gather the files, and put them in a array
    while( $file = readdir( $directory ) )
    {
    $file_array[] = $file;
    }
    # Blockquote used for displaying purposes
    echo"<blockquote><br>";
    # Tell php if it finds a directory to
    # skip over it
    foreach( $file_array as $file )
    {
    if( $file == ".." || $file == "." )
    {
    continue;
    }
               
    # Regular expression statement to only echo
    # back files with a .PDF extendtion
    # the '.php$' tells the Regular expression statement to
    # only return files with the .php extendion at the end
    if( !ereg( ".pdf$", $file ) )
    {   
    continue;
    }
        #-----------------------------------------(help needed 
Here)-------------------------------------------------------------------------
    # Display the file with a link
       # Change Href to reflect your Directory that the files are in so 
linking will work right
    echo"<font face=\"Tahoma\" size=\"2\">. <a 
href=\"productdata\AB\1747-SLC5\$file\">$file</a></font><br>";
    # Count the file that was displayed
    $count++;
    }
    echo"</blockquote>";
    # Display Number of files that were displayed
    echo"<font face=\"Tahoma\" size=\"2\">There are <b>$count</b> valid 
Php Files In the Test Directory</font>";
    #close thedirectory you used
    closedir($directory);   
    ?>





[Non-text portions of this message have been removed]



------------------------ Yahoo! Groups Sponsor --------------------~--> 
<font face=arial size=-1><a 
href="http://us.ard.yahoo.com/SIG=12hrv7ofh/M=362329.6886308.7839368.1510227/D=groups/S=1705005703:TM/Y=YAHOO/EXP=1123186887/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
">Fair play? Video games influencing politics. Click and talk back!</a>.</font>
--------------------------------------------------------------------~-> 

Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to