My readdir and display images snippet - Thanks
My readdir and display images snippet - Thanks
am 12.09.2007 18:50:04 von Confused but working on it
Just wanted to say thanks for the posts helping me make ths work. Added
a few comments and after the readdir used a pattern match to test for
..jpg, and seems to work fine on my test setup. Maybe I should test for
gif, tiff, and png... Anyway, here's the code:
//Open images directory
$dir = opendir("images");
//read files in the dir
while (($file = readdir($dir)) !== false)
//test to make sure jpg
if (eregi("\.jpg",$file))
{
echo "";
}
closedir($dir);
?>
For my next trick I'm going to change the above to read a thumbs dir,
and make a link to a larger picture of the same name in images.
Shouldn't be too hard bt my last programming class was almost 20 years
ago. :) Hats off to everyone that does this for a living.
Thanks again!
Re: My readdir and display images snippet - Thanks
am 13.09.2007 16:37:21 von Steve
"Confused but working on it" wrote in message
news:2007091209500416807-PostInGroups@wherevercom...
> Just wanted to say thanks for the posts helping me make ths work. Added a
> few comments and after the readdir used a pattern match to test for .jpg,
> and seems to work fine on my test setup. Maybe I should test for gif,
> tiff, and png... Anyway, here's the code:
>
> //Open images directory
> $dir = opendir("images");
> //read files in the dir
> while (($file = readdir($dir)) !== false)
> //test to make sure jpg
> if (eregi("\.jpg",$file))
one suggestion,
why are you using ereg? beside the fact that it is vastly more resource
intensive than preg and slower, neither is needed because substr is faster
than both.
while ...
$extension = strtolower(substr($file, -4));
if ($extension != '.jpg'){ continue; }
whatever you want to do with the jpg from here
end
you could also use fnmatch to pattern match for file names. you could even
use glob()...
$directory = 'images';
$extension = '*.jpg';
chdir($directory);
foreach (glob($extension) as $image)
{
echo '';
}
i personally prefer glob() for such things since it requires less code to
get what you want.
anyway...there's always more than one way to skin a cat. ;^)
Re: My readdir and display images snippet - Thanks
am 13.09.2007 17:10:48 von Captain Paralytic
On 12 Sep, 17:50, Confused but working on it
wrote:
> Just wanted to say thanks for the posts helping me make ths work. Added
> a few comments and after the readdir used a pattern match to test for
> .jpg, and seems to work fine on my test setup. Maybe I should test for
> gif, tiff, and png... Anyway, here's the code:
>
> //Open images directory
> $dir = opendir("images");
> //read files in the dir
> while (($file = readdir($dir)) !== false)
> //test to make sure jpg
> if (eregi("\.jpg",$file))
> {
> echo "";
> }
> closedir($dir);
> ?>
>
> For my next trick I'm going to change the above to read a thumbs dir,
> and make a link to a larger picture of the same name in images.
> Shouldn't be too hard bt my last programming class was almost 20 years
> ago. :) Hats off to everyone that does this for a living.
>
> Thanks again!
I think that your ereg might find files such as fred.jpgs.php
Re: My readdir and display images snippet - Thanks
am 13.09.2007 18:07:17 von Steve
"Confused but working on it" wrote in message
news:2007091209500416807-PostInGroups@wherevercom...
> Just wanted to say thanks for the posts helping me make ths work. Added a
> few comments and after the readdir used a pattern match to test for .jpg,
> and seems to work fine on my test setup. Maybe I should test for gif,
> tiff, and png... Anyway, here's the code:
ok, so i've got time on my hands...after re-reading posts today, i'm on this
one again. here's something that will allow you to list any file you want
either filtering by extension or just getting everything. i've been using
the function below since glob became availabe in php. beneath it, i wrapped
up some pseudo-testing code so you could see how the function can be called
and what each param will generate for you.
have fun. ;^)
function listFiles($path, $extension = array(), $combine = false)
{
if (!chdir($path)){ return array(); }
if (!$extension){ $extension = array('*'); }
if (!is_array($extension)){ $extension = array($extension); }
$extensions = '*.{' . implode(',', $extension) . '}';
$files = glob($extensions, GLOB_BRACE);
if (!$files){ return array(); }
$list = array();
foreach ($files as $file)
{
$list[] = ($combine ? $path : '') . $file;
}
return $list;
}
// sampling output
function beautify($html)
{
$html = str_replace(' :: Array', '', $html);
return $html;
}
ob_start('beautify');
// end sample
// test the function
$path = 'c:/inetpub/wwwroot/images';
$extensions = array('jpg', 'gif', 'tif?');
echo 'directory listing for "' . $path . '"
';
$images = listFiles($path);
echo 'no filter, no directory :: ' . print_r($images, true) . '
';
$images = listFiles($path, null, true);
echo 'no filter :: ' . print_r($images, true) . '
';
$images = listFiles($path, 'jpg', true);
echo 'single filter :: ' . print_r($images, true) . '
';
$images = listFiles($path, $extensions, true);
echo 'multiple filter :: ' . print_r($images, true) . '
';
?>
Re: My readdir and display images snippet - Thanks
am 14.09.2007 23:34:03 von Confused but working on it
On 2007-09-13 07:37:21 -0700, "Steve" said:
>
> "Confused but working on it" wrote in
> message news:2007091209500416807-PostInGroups@wherevercom...
>> Just wanted to say thanks for the posts helping me make ths work. Added
>> a few comments and after the readdir used a pattern match to test for
>> .jpg, and seems to work fine on my test setup. Maybe I should test for
>> gif, tiff, and png... Anyway, here's the code:
>>
>> //Open images directory
>> $dir = opendir("images");
>> //read files in the dir
>> while (($file = readdir($dir)) !== false)
>> //test to make sure jpg
>> if (eregi("\.jpg",$file))
>
> one suggestion,
>
> why are you using ereg? beside the fact that it is vastly more resource
> intensive than preg and slower, neither is needed because substr is
> faster than both.
>
> while ...
> $extension = strtolower(substr($file, -4));
> if ($extension != '.jpg'){ continue; }
> whatever you want to do with the jpg from here
> end
>
> you could also use fnmatch to pattern match for file names. you could
> even use glob()...
>
> $directory = 'images';
> $extension = '*.jpg';
> chdir($directory);
> foreach (glob($extension) as $image)
> {
> echo '';
> }
>
> i personally prefer glob() for such things since it requires less code
> to get what you want.
>
> anyway...there's always more than one way to skin a cat. ;^)
Hey Steve,
I'm using eregi because I found a line on a site or in the manual that
didn't get .jpg so I fixed it to get the jpgs. Not a programmer, and
barely even a hobbyist so I do what I can to kludge some stuff
together. Maybe I can read preg, substr and glob and use one of them
but was pretty happy with the cat being skinned at all. :)
Basically I'm just writing a paragraph about and event and putting
160px images on the page with a bit of padding. Today I was going to
make this thing read thumbs and link to images... Might have to take a
nap.
Thanks for the help
Re: My readdir and display images snippet - Thanks
am 14.09.2007 23:42:46 von Confused but working on it
On 2007-09-13 08:10:48 -0700, Captain Paralytic said:
> On 12 Sep, 17:50, Confused but working on it
> wrote:
>> Just wanted to say thanks for the posts helping me make ths work. Added
>> a few comments and after the readdir used a pattern match to test for
>> .jpg, and seems to work fine on my test setup. Maybe I should test for
>> gif, tiff, and png... Anyway, here's the code:
>>
>> //Open images directory
>> $dir = opendir("images");
>> //read files in the dir
>> while (($file = readdir($dir)) !== false)
>> //test to make sure jpg
>> if (eregi("\.jpg",$file))
>> {
>> echo "";
>> }
>> closedir($dir);
>> ?>
>>
>> For my next trick I'm going to change the above to read a thumbs dir,
>> and make a link to a larger picture of the same name in images.
>> Shouldn't be too hard bt my last programming class was almost 20 years
>> ago. :) Hats off to everyone that does this for a living.
>>
>> Thanks again!
>
> I think that your ereg might find files such as fred.jpgs.php
Yo Captain! (ex-nick of mine)
So that will never be found because fred and I, well, his wife will
tell you the whole story...
Just like a million other peeps I take pictures. I load em up in my mac
in iPhoto, make an album with the corresponding name and don't include
shats that were crappy. Export to a dir called images, filezilla to my
site. Use my little code to display on a page. I tried iWeb to make
pages, gallery databases done in php, and holy cow way to complicated.
Just easier to manage everything in directories by some kind of topic.
So is there a way for your exampe to happen?
Thanks for your input,
Ron
Re: My readdir and display images snippet - Thanks
am 14.09.2007 23:50:44 von Confused but working on it
On 2007-09-13 09:07:17 -0700, "Steve" said:
>
> "Confused but working on it" wrote in
> message news:2007091209500416807-PostInGroups@wherevercom...
>> Just wanted to say thanks for the posts helping me make ths work. Added
>> a few comments and after the readdir used a pattern match to test for
>> .jpg, and seems to work fine on my test setup. Maybe I should test for
>> gif, tiff, and png... Anyway, here's the code:
>
> ok, so i've got time on my hands...after re-reading posts today, i'm on
> this one again. here's something that will allow you to list any file
> you want either filtering by extension or just getting everything. i've
> been using the function below since glob became availabe in php.
> beneath it, i wrapped up some pseudo-testing code so you could see how
> the function can be called and what each param will generate for you.
>
> have fun. ;^)
>
>
> function listFiles($path, $extension = array(), $combine = false)
> {
> if (!chdir($path)){ return array(); }
> if (!$extension){ $extension = array('*'); }
> if (!is_array($extension)){ $extension = array($extension); }
> $extensions = '*.{' . implode(',', $extension) . '}';
> $files = glob($extensions, GLOB_BRACE);
> if (!$files){ return array(); }
> $list = array();
> foreach ($files as $file)
> {
> $list[] = ($combine ? $path : '') . $file;
> }
> return $list;
> }
>
> // sampling output
> function beautify($html)
> {
> $html = str_replace(' :: Array', '', $html);
> return $html;
> }
> ob_start('beautify');
> // end sample
>
> // test the function
> $path = 'c:/inetpub/wwwroot/images';
> $extensions = array('jpg', 'gif', 'tif?');
>
> echo 'directory listing for "' . $path . '"
';
>
> $images = listFiles($path);
> echo 'no filter, no directory :: ' . print_r($images, true) . '
';
>
> $images = listFiles($path, null, true);
> echo 'no filter :: ' . print_r($images, true) . '
';
>
> $images = listFiles($path, 'jpg', true);
> echo 'single filter :: ' . print_r($images, true) . '
';
>
> $images = listFiles($path, $extensions, true);
> echo 'multiple filter :: ' . print_r($images, true) . '
';
> ?>
Steve,
Wow, way too much time on your hands. :)
My first goal was to get my pics to display, then get rid of the . and
..., now I will fix the code to the example you gave before if you say
it's faster. Then,(light drumroll...), I want to read everything in
thumbs and create my output so I get the thumbto link to a larger pic
in images. Some sort of anchor tag thing. THAT would be cool to me.
Then I can rewrite about 20 pages, export 20 albums as thumbs and 20
albums as images... :)
I'm going to make my anchor tag...
thx..ron
Re: My readdir and display images snippet - Thanks
am 15.09.2007 00:36:10 von Confused but working on it
On 2007-09-13 07:37:21 -0700, "Steve" said:
>
> "Confused but working on it" wrote in
> message news:2007091209500416807-PostInGroups@wherevercom...
>> Just wanted to say thanks for the posts helping me make ths work. Added
>> a few comments and after the readdir used a pattern match to test for
>> .jpg, and seems to work fine on my test setup. Maybe I should test for
>> gif, tiff, and png... Anyway, here's the code:
>>
>> //Open images directory
>> $dir = opendir("images");
>> //read files in the dir
>> while (($file = readdir($dir)) !== false)
>> //test to make sure jpg
>> if (eregi("\.jpg",$file))
>
> one suggestion,
>
> why are you using ereg? beside the fact that it is vastly more resource
> intensive than preg and slower, neither is needed because substr is
> faster than both.
>
> while ...
> $extension = strtolower(substr($file, -4));
> if ($extension != '.jpg'){ continue; }
> whatever you want to do with the jpg from here
> end
>
> you could also use fnmatch to pattern match for file names. you could
> even use glob()...
>
> $directory = 'images';
> $extension = '*.jpg';
> chdir($directory);
> foreach (glob($extension) as $image)
> {
> echo '';
> }
>
> i personally prefer glob() for such things since it requires less code
> to get what you want.
>
> anyway...there's always more than one way to skin a cat. ;^)
Here's how I changed the line:
echo "
class=\"pad1em\">";
My originals were 1600x1200 so I did a bew export to thumbs at 100x75
and another to images at 400x300. Freakin fantastic! Had to refresh the
page as the old thumb was showing but very cool. Will play with size I
shoot at and then corresponding thumbs and bigger versions. Like 1024
wide makes nice thumbs at 128, click to see a 512 or 640 bersion.
Before I start hacking your code in from above, any reason the
following wont work?
> if ($extension != '.jpg' or != 'gif' or != '.tif' ){ continue; }
Or use the whole expression?
Thanks again!
ron
Re: My readdir and display images snippet - Thanks
am 15.09.2007 04:30:34 von luiheidsgoeroe
On Fri, 14 Sep 2007 23:42:46 +0200, Confused but working on it =
wrote:
> On 2007-09-13 08:10:48 -0700, Captain Paralytic
m> =
> said:
>
>> On 12 Sep, 17:50, Confused but working on it
>> wrote:
>>> Just wanted to say thanks for the posts helping me make ths work. Ad=
ded
>>> a few comments and after the readdir used a pattern match to test fo=
r
>>> .jpg, and seems to work fine on my test setup. Maybe I should test f=
or
>>> gif, tiff, and png... Anyway, here's the code:
>>>
>>> //Open images directory
>>> $dir =3D opendir("images");
>>> //read files in the dir
>>> while (($file =3D readdir($dir)) !== false)
>>> //test to make sure jpg
>>> if (eregi("\.jpg",$file))
>>> {
>>> echo "";
Hmm, are you sure about the class name? I'd say that on a new layout wit=
h =
the same HTML 'pad1em' could end up making very little sense. A golden =
rule of css is that a classname should reflect what something is, not ho=
w =
it is _displayed. A more suitable name could be something like =
'imagepreview' or the like.
>>> }
>>> closedir($dir);
>>> ?>
>>> For my next trick I'm going to change the above to read a thumbs di=
r,
>>> and make a link to a larger picture of the same name in images.
>>> Shouldn't be too hard bt my last programming class was almost 20 yea=
rs
>>> ago. :) Hats off to everyone that does this for a living.
>>> Thanks again!
>> I think that your ereg might find files such as fred.jpgs.php
>
> Yo Captain! (ex-nick of mine)
>
> So that will never be found because fred and I, well, his wife will te=
ll =
> you the whole story...
>
> Just like a million other peeps I take pictures. I load em up in my ma=
c =
> in iPhoto, make an album with the corresponding name and don't include=
=
> shats that were crappy. Export to a dir called images, filezilla to my=
=
> site. Use my little code to display on a page. I tried iWeb to make =
> pages, gallery databases done in php, and holy cow way to complicated.=
=
> Just easier to manage everything in directories by some kind of topic.=
>
> So is there a way for your exampe to happen?
Oh yeah.
(Just make sure the file is a proper image directly after an upload. =
Examining extention or mime-type is no good. I'm quite happy to us =
getimagesize() for this purpose, as it would return false if it couldn't=
=
interpret a file as an image.)
And to display only files _ending_ in jp(e)g, I'd use =
preg_match('/\.jpe?g$/i',$string);
-- =
Rik Wasmus
Re: My readdir and display images snippet - Thanks
am 16.09.2007 04:47:41 von Steve
"Confused but working on it" wrote in message
news:2007091414504450073-PostInGroups@wherevercom...
> On 2007-09-13 09:07:17 -0700, "Steve" said:
>
>>
>> "Confused but working on it" wrote in message
>> news:2007091209500416807-PostInGroups@wherevercom...
>>> Just wanted to say thanks for the posts helping me make ths work. Added
>>> a few comments and after the readdir used a pattern match to test for
>>> .jpg, and seems to work fine on my test setup. Maybe I should test for
>>> gif, tiff, and png... Anyway, here's the code:
>>
>> ok, so i've got time on my hands...after re-reading posts today, i'm on
>> this one again. here's something that will allow you to list any file you
>> want either filtering by extension or just getting everything. i've been
>> using the function below since glob became availabe in php. beneath it, i
>> wrapped up some pseudo-testing code so you could see how the function can
>> be called and what each param will generate for you.
>>
>> have fun. ;^)
>>
>>
>> function listFiles($path, $extension = array(), $combine = false)
>> {
>> if (!chdir($path)){ return array(); }
>> if (!$extension){ $extension = array('*'); }
>> if (!is_array($extension)){ $extension = array($extension); }
>> $extensions = '*.{' . implode(',', $extension) . '}';
>> $files = glob($extensions, GLOB_BRACE);
>> if (!$files){ return array(); }
>> $list = array();
>> foreach ($files as $file)
>> {
>> $list[] = ($combine ? $path : '') . $file;
>> }
>> return $list;
>> }
>>
>> // sampling output
>> function beautify($html)
>> {
>> $html = str_replace(' :: Array', '', $html);
>> return $html;
>> }
>> ob_start('beautify');
>> // end sample
>>
>> // test the function
>> $path = 'c:/inetpub/wwwroot/images';
>> $extensions = array('jpg', 'gif', 'tif?');
>>
>> echo 'directory listing for "' . $path . '"
';
>>
>> $images = listFiles($path);
>> echo 'no filter, no directory :: ' . print_r($images, true) .
>> '
';
>>
>> $images = listFiles($path, null, true);
>> echo 'no filter :: ' . print_r($images, true) . '
';
>>
>> $images = listFiles($path, 'jpg', true);
>> echo 'single filter :: ' . print_r($images, true) . '
';
>>
>> $images = listFiles($path, $extensions, true);
>> echo 'multiple filter :: ' . print_r($images, true) . '
';
>> ?>
>
> Steve,
>
> Wow, way too much time on your hands. :)
i think when i originally wrote that, it took all of about 5 minutues. ;^)
> My first goal was to get my pics to display, then get rid of the . and ..,
> now I will fix the code to the example you gave before if you say it's
> faster. Then,(light drumroll...), I want to read everything in thumbs and
> create my output so I get the thumbto link to a larger pic in images. Some
> sort of anchor tag thing. THAT would be cool to me. Then I can rewrite
> about 20 pages, export 20 albums as thumbs and 20 albums as images... :)
you realize you don't have to have a thumb of each pic in order to generate
a thumb, right?
if you'd like, i can post a class that does this based on the actual image,
and then show how to use it in your main script.
Re: My readdir and display images snippet - Thanks
am 16.09.2007 07:45:18 von Confused but working on it
On 2007-09-14 19:30:34 -0700, "Rik Wasmus" said:
>>>>
>>>> echo "";
>
> Hmm, are you sure about the class name? I'd say that on a new layout wit h
> the same HTML 'pad1em' could end up making very little sense. A golden
> rule of css is that a classname should reflect what something is, not ho w
> it is _displayed. A more suitable name could be something like
> 'imagepreview' or the like.
>
>>
>
> Oh yeah.
> (Just make sure the file is a proper image directly after an upload.
> Examining extention or mime-type is no good. I'm quite happy to us
> getimagesize() for this purpose, as it would return false if it couldn't
> interpret a file as an image.)
>
> And to display only files _ending_ in jp(e)g, I'd use
> preg_match('/\.jpe?g$/i',$string);
> --
> Rik Wasmus
Rik,
Thanks for responding. In this case the class name is what it is.
..pad1em{padding: 1em;}
Was just messing with some spacing and will rename if I add some pretty
decorations. Any suggestions for this class?
thx..ron
Re: My readdir and display images snippet - Thanks
am 16.09.2007 08:04:41 von Confused but working on it
>>
>> Steve,
>>
>> Wow, way too much time on your hands. :)
>
> i think when i originally wrote that, it took all of about 5 minutues. ;^)
>
>> My first goal was to get my pics to display, then get rid of the . and
>> .., now I will fix the code to the example you gave before if you say
>> it's faster. Then,(light drumroll...), I want to read everything in
>> thumbs and create my output so I get the thumbto link to a larger pic
>> in images. Some sort of anchor tag thing. THAT would be cool to me.
>> Then I can rewrite about 20 pages, export 20 albums as thumbs and 20
>> albums as images... :)
>
> you realize you don't have to have a thumb of each pic in order to
> generate a thumb, right?
>
> if you'd like, i can post a class that does this based on the actual
> image, and then show how to use it in your main script.
Well hell yeah, post away!
I was trying to do it myself as I see a lot of posts asking for free work. :)
At this point storage isn't an issue and it takes 20 seconds to
generate the thumbs and the resized images from iPhoto. As opposed to
if I had a 1600x1200 pic and uploaded I think that takes more storage
than a 800px pic and a 100px thumb. Let me see if I can write a script
to calculate the storage difference... :)
So when I take pics I make a dir and make images and thumbs dir inside
of that. The I have a very simple php page with includes for header and
footer. Change the title, add my paragraph or two and then my thumbs
output. I tried to use iWeb for plain export of html pages but ends up
being more work because every file extension needs to be changed to
php, footer and header added, css line to be added. UGH.
So in 67 lines of code or less, read my images, display as thumbs
linking back to the originals, sorted by filename...
:)
Thanks,
Ron
Re: My readdir and display images snippet - Thanks
am 17.09.2007 01:56:01 von Steve
"Confused but working on it" wrote in message
news:2007091523044150073-PostInGroups@wherevercom...
>>>
>>> Steve,
>>>
>>> Wow, way too much time on your hands. :)
>>
>> i think when i originally wrote that, it took all of about 5 minutues.
>> ;^)
>>
>>> My first goal was to get my pics to display, then get rid of the . and
>>> .., now I will fix the code to the example you gave before if you say
>>> it's faster. Then,(light drumroll...), I want to read everything in
>>> thumbs and create my output so I get the thumbto link to a larger pic in
>>> images. Some sort of anchor tag thing. THAT would be cool to me. Then I
>>> can rewrite about 20 pages, export 20 albums as thumbs and 20 albums as
>>> images... :)
>>
>> you realize you don't have to have a thumb of each pic in order to
>> generate a thumb, right?
>>
>> if you'd like, i can post a class that does this based on the actual
>> image, and then show how to use it in your main script.
>
> Well hell yeah, post away!
>
> I was trying to do it myself as I see a lot of posts asking for free work.
> :)
>
> At this point storage isn't an issue and it takes 20 seconds to generate
> the thumbs and the resized images from iPhoto. As opposed to if I had a
> 1600x1200 pic and uploaded I think that takes more storage than a 800px
> pic and a 100px thumb. Let me see if I can write a script to calculate the
> storage difference... :)
>
> So when I take pics I make a dir and make images and thumbs dir inside of
> that. The I have a very simple php page with includes for header and
> footer. Change the title, add my paragraph or two and then my thumbs
> output. I tried to use iWeb for plain export of html pages but ends up
> being more work because every file extension needs to be changed to php,
> footer and header added, css line to be added. UGH.
>
> So in 67 lines of code or less, read my images, display as thumbs linking
> back to the originals, sorted by filename...
ok...call this script get.thumb.nail.php (or whatever you'd like).
site.cfg.php is a configuration script that objectifies different things for
my site...in this case, where included directories are. hard-code as you see
fit. below this main script you'll find the functions used and supplied by
functions.inc.php. finally, below that, you'll see an example use of
everything together. if you have questions or need help, just post back.
cheers...
========
get.thumb.nail.php
require_once 'site.cfg.php';
require_once $site->includeDirectory . 'functions.inc.php';
$fileName = $_REQUEST['fileName'] ? $_REQUEST['fileName'] :
$_REQUEST['altImage'];
$maxSize = $_REQUEST['maxSize'] ? $_REQUEST['maxSize'] : 200;
$filePath = $site->imagesDirectory;
$fileData = @file_get_contents($filePath . $fileName);
$originalImage = @imagecreatefromstring($fileData);
@list($imageWidth, $imageHeight, $imageType, $imageAttributes) =
@getimagesize($filePath . $fileName);
$newImageHeight = $imageWidth < $maxSize ? $imageHeight : ($imageHeight /
$imageWidth) * $maxSize;
$newImageWidth = $imageWidth < $maxSize ? $imageWidth : $maxSize;
$thumbNail = @imagecreatetruecolor($newImageWidth, $newImageHeight);
@imagecopyresampled(
$thumbNail,
$originalImage,
0,
0,
0,
0,
$newImageWidth,
$newImageHeight,
@imagesx($originalImage),
@imagesy($originalImage)
);
@imagejpeg($thumbNail);
@imagedestroy($thumbNail);
@imagedestroy($originalImage);
?>
======
get.file.php
require_once 'site.cfg.php';
$fileData = '';
$fileName = $_REQUEST['fileName'];
$filePath = $site->uploadBaseDirectory;
if ($fileName != ''){ $fileData = @file_get_contents($filePath .
$fileName); }
header('pragma: public' );
header('expires: 0' );
header('cache-control: private', false );
header('cache-control: must-revalidate, post-check=0, pre-check=0' );
header('content-disposition: attachment; filename="' . $fileName . '"' );
header('content-size: ' . count($fileData) );
header('content-transfer-encoding: binary' );
header('content-type: application/octet-stream' );
echo $fileData;
?>
=======
test.php
$sql = "
SELECT Id
,
Description
,
FileName
,
FileSize
,
FileType
,
DATE_FORMAT(Stamp, '%m/%d/%Y %H:%i:%s') Stamp
FROM upLoads
ORDER BY FileName
";
$records = db::execute($sql);
foreach ($records as $row => $record)
{
$queryString = "?fileName=" . $record['FILENAME'] . "&maxSize=200";
?>
href="= $site->uri ?>get.file.php= $queryString ?>"
style="font-size:12pt;"
>
src="= $site->uri ?>get.thumb.nail.php= $queryString ?>"
alt="= $record['DESCRIPTION'] ?>"
title="Click To Open: = $record['DESCRIPTION'] ?>"
/>
}
?>
Re: My readdir and display images snippet - Thanks
am 19.09.2007 17:55:49 von Confused but working on it
On 2007-09-16 16:56:01 -0700, "Steve" said:
?>
>
> href="= $site->uri ?>get.file.php= $queryString ?>"
> style="font-size:12pt;"
> >
>
> src="= $site->uri ?>get.thumb.nail.php= $queryString ?>"
> alt="= $record['DESCRIPTION'] ?>"
> title="Click To Open: = $record['DESCRIPTION'] ?>"
> />
>
>
>
> }
> ?>
Steve,
Thanks for posting this. I did a cut and paste and will rty to
implement soon. Have had to work the past few days. :)
Thanks,
Ron
Re: My readdir and display images snippet - Thanks
am 19.09.2007 18:10:01 von Steve
"Confused but working on it" wrote in message
news:2007091908554916807-PostInGroups@wherevercom...
> On 2007-09-16 16:56:01 -0700, "Steve" said:
>
> ?>
>>
>> href="= $site->uri ?>get.file.php= $queryString ?>"
>> style="font-size:12pt;"
>> >
>>
>> src="= $site->uri ?>get.thumb.nail.php= $queryString ?>"
>> alt="= $record['DESCRIPTION'] ?>"
>> title="Click To Open: = $record['DESCRIPTION'] ?>"
>> />
>>
>>
>>
>> }
>> ?>
>
> Steve,
>
> Thanks for posting this. I did a cut and paste and will rty to implement
> soon. Have had to work the past few days. :)
>
> Thanks,
> Ron
no problem. let me know how it goes.