Jump to content

Relative Directory Reading not working


randomname

Recommended Posts

Well I am new to php so this is probably an easy fix but it is not working for me

Here is my code
[code]
<?php
$path = $_GET['path'];
$path = 'site_images/galleries/',$path;
if (!$path or !is_dir($path)) $path='mp3';
$dir_handle = opendir($path) or die("Unable to open $path");
$files=array();
while ($file = readdir($dir_handle))
{
    if ($file != '.' and $file != '..' and strtolower( substr ( $file, -4, 4 ) ) == ".jpg" )
    $files[]=$file;
}
$i=0;

if(count($files)) {
    sort ($files);
    foreach ($files as $file) {
$i++;
        list( $w, $h ) = GetImageSize( $path . '/' . $file );
        echo '&image',$i,'=', $file,'&img_w',$i,'=', $w,'&img_h',$i,'=', $h;
    }
}
closedir($dir_handle);
?>[/code]
This is the line giving me the problems
[!--coloro:#FF0000--][span style=\"color:#FF0000\"][!--/coloro--]$path = 'site_images/galleries/',$path;[!--colorc--][/span][!--/colorc--]

I want to use the $_GET as the directory within "site_images/galleries/" but this isn't working for me if I take out that line it works great but I have to put path=site_images/galleries/gallery1 which I don't want to do

Any help is greatly appreciated I have been messing with this for hours

Thanks
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.