Can"t Escape
am 11.09.2007 23:41:38 von Confused but working on it
Hi all,
I'm trying to do something simple and grabbed a snippet from the php
manual for reading files in a directory. The snippet echos out a nice
list of files.
//Open images directory
$dir = opendir("images");
//List files in images directory
while (($file = readdir($dir)) !== false)
{
echo "filename: " . $file . "
";
}
closedir($dir);
?>
So with my very limited PHP skillset I am trying to concatente the
$file variable in an image tag. I can't seem to escape this the right
way. I've done some cutting and pasting and commenting trying to
figure this out. (keep the laughing down. :)
//NOT WORKING - shows the little blue question mark box
echo "";
//Works
echo "
";
//Open images directory
$dir = opendir("images");
//List files in images directory
while (($file = readdir($dir)) !== false)
{
// Below Works---Shows the filename like DSC01351.jpg
echo "filename: " . $file;
//NOT - shows the little blue question mark box
echo "";
//NOT - shows the little blue question mark box
echo "";
}
closedir($dir);
?>
Just amazingly frustrated with something that is so simple. I'v tried a
lot of ways to escape the quotes in the img tag but can't mahe it work.
left a couple of example...
Any help would be greatly appreciated.
TIA!
Re: Can"t Escape
am 11.09.2007 23:48:01 von Good Man
Confused but working on it wrote in
news:2007091114413816807-PostInGroups@wherevercom:
> Hi all,
>
> I'm trying to do something simple and grabbed a snippet from the php
> manual for reading files in a directory. The snippet echos out a nice
> list of files.
>
> //Open images directory
> $dir = opendir("images");
> //List files in images directory
> while (($file = readdir($dir)) !== false)
> {
> echo "filename: " . $file . "
";
> }
> closedir($dir);
> ?>
>
> So with my very limited PHP skillset I am trying to concatente the
> $file variable in an image tag. I can't seem to escape this the right
> way. I've done some cutting and pasting and commenting trying to
> figure this out. (keep the laughing down. :)
>
>
> //NOT WORKING - shows the little blue question mark box
> echo "";
This means: show an image, the source of which is at the top of the
server. Perhaps you should put the entire path to the image, relative
to where your PHP script is being called from.
echo "";
> //List files in images directory
> while (($file = readdir($dir)) !== false)
> {
> // Below Works---Shows the filename like DSC01351.jpg
> echo "filename: " . $file;
> //NOT - shows the little blue question mark box
> echo "";
> //NOT - shows the little blue question mark box
> echo "";
>
> }
> closedir($dir);
> ?>
according to your script, the images are located in the directory
"images". therefore, you need the directory name in addition to the
image name. should be:
echo "";
etc
>
> Just amazingly frustrated with something that is so simple. I'v tried
a
> lot of ways to escape the quotes in the img tag but can't mahe it
work.
> left a couple of example...
>
> Any help would be greatly appreciated.
>
> TIA!
>
>
Re: Can"t Escape
am 11.09.2007 23:50:53 von Michael Fesser
..oO(Good Man)
>Confused but working on it wrote in
>news:2007091114413816807-PostInGroups@wherevercom:
>
>>
>> //NOT WORKING - shows the little blue question mark box
>> echo "";
>
>This means: show an image, the source of which is at the top of the
>server. Perhaps you should put the entire path to the image, relative
>to where your PHP script is being called from.
>
>echo "";
Additionally HTML also allows single quotes, which avoids the ugly
escaping:
echo "";
>according to your script, the images are located in the directory
>"images". therefore, you need the directory name in addition to the
>image name. should be:
>
>echo "";
echo "";
I find that much more readable.
Micha
Re: Can"t Escape
am 11.09.2007 23:57:13 von Cliff Smith
"Confused but working on it" wrote in message
news:2007091114413816807-PostInGroups@wherevercom...
> Hi all,
>
> I'm trying to do something simple and grabbed a snippet from the php
> manual for reading files in a directory. The snippet echos out a nice list
> of files.
>
> //Open images directory
> $dir = opendir("images");
> //List files in images directory
> while (($file = readdir($dir)) !== false)
> {
> echo "filename: " . $file . "
";
> }
> closedir($dir);
> ?>
>
> So with my very limited PHP skillset I am trying to concatente the $file
> variable in an image tag. I can't seem to escape this the right way. I've
> done some cutting and pasting and commenting trying to figure this out.
> (keep the laughing down. :)
>
>
> //NOT WORKING - shows the little blue question mark box
> echo "";
> //Works
> echo "
";
> //Open images directory
> $dir = opendir("images");
> //List files in images directory
> while (($file = readdir($dir)) !== false)
> {
> // Below Works---Shows the filename like DSC01351.jpg
> echo "filename: " . $file;
> //NOT - shows the little blue question mark box
> echo "";
> //NOT - shows the little blue question mark box
> echo "";
>
> }
> closedir($dir);
> ?>
>
> Just amazingly frustrated with something that is so simple. I'v tried a
> lot of ways to escape the quotes in the img tag but can't mahe it work.
> left a couple of example...
>
> Any help would be greatly appreciated.
>
> TIA!
Hi Confused,
well you've certainly circled all around it !
First, a basic error,
You've listed the files in a particular directory but neglected to tell the
HTML image tag what the directory name is !
Second, not really an error, but you can nest single quotes inside double
quotes to avoid all the confusing escaping.
Try This
//Open images directory
$dir = opendir("images");
//List files in images directory
while (($file = readdir($dir)) !== false) {
echo "
";
echo "filename: " . $file . "
";
}
closedir($dir);
?>
note the SRC attribute is in single quotes with the double quotes
encapsulating the srings.
Cheers
Ron
Re: Can"t Escape
am 12.09.2007 00:02:32 von Confused but working on it
On 2007-09-11 14:50:53 -0700, Michael Fesser said:
> .oO(Good Man)
>
>> Confused but working on it wrote in
>> news:2007091114413816807-PostInGroups@wherevercom:
>>
>>>
>>> //NOT WORKING - shows the little blue question mark box
>>> echo "";
>>
>> This means: show an image, the source of which is at the top of the
>> server. Perhaps you should put the entire path to the image, relative
>> to where your PHP script is being called from.
>>
>> echo "";
>
> Additionally HTML also allows single quotes, which avoids the ugly
> escaping:
>
> echo "";
>
>> according to your script, the images are located in the directory
>> "images". therefore, you need the directory name in addition to the
>> image name. should be:
>>
>> echo "";
>
> echo "";
>
> I find that much more readable.
>
> Micha
Wow, Thanks!
I didn't even think to try adding the images/ part to the line. Figured
it was outputting the filename so...
Mixing single and double quotes in the case eliminates the need to
escape I take it.
Now it appears I have files named "." and "..", well, back to the manual...
Thanks again
Re: Can"t Escape
am 12.09.2007 00:12:16 von Michael Fesser
..oO(Confused but working on it)
>Now it appears I have files named "." and "..", well, back to the manual...
readdir() returns _all_ directory entries, normal files and other
directories. You can use is_file() or is_dir() to filter out the
unwanted. See the manual for details and examples.
Micha
Re: Can"t Escape
am 12.09.2007 01:19:12 von Cliff Smith
"Confused but working on it" wrote in message
news:2007091115023216807-PostInGroups@wherevercom...
> On 2007-09-11 14:50:53 -0700, Michael Fesser said:
>
>> .oO(Good Man)
>>
>>> Confused but working on it wrote in
>>> news:2007091114413816807-PostInGroups@wherevercom:
>>>
>>>>
>>>> //NOT WORKING - shows the little blue question mark box
>>>> echo "";
>>>
>>> This means: show an image, the source of which is at the top of the
>>> server. Perhaps you should put the entire path to the image, relative
>>> to where your PHP script is being called from.
>>>
>>> echo "";
>>
>> Additionally HTML also allows single quotes, which avoids the ugly
>> escaping:
>>
>> echo "";
>>
>>> according to your script, the images are located in the directory
>>> "images". therefore, you need the directory name in addition to the
>>> image name. should be:
>>>
>>> echo "";
>>
>> echo "";
>>
>> I find that much more readable.
>>
>> Micha
>
> Wow, Thanks!
> I didn't even think to try adding the images/ part to the line. Figured it
> was outputting the filename so...
>
> Mixing single and double quotes in the case eliminates the need to escape
> I take it.
>
> Now it appears I have files named "." and "..", well, back to the
> manual...
>
> Thanks again
.. refers to the current directory, and .. refers to its parent - its an
Operating System thing.
Cheers
Ron
Re: Can"t Escape
am 12.09.2007 01:29:12 von Confused but working on it
On 2007-09-11 15:12:16 -0700, Michael Fesser said:
> .oO(Confused but working on it)
>
>> Now it appears I have files named "." and "..", well, back to the manual...
>
> readdir() returns _all_ directory entries, normal files and other
> directories. You can use is_file() or is_dir() to filter out the
> unwanted. See the manual for details and examples.
>
> Micha
Great leads, thanks
Re: Can"t Escape
am 12.09.2007 01:30:45 von Confused but working on it
On 2007-09-11 16:19:12 -0700, "Ron Barnett" said:
> "Confused but working on it" wrote in
> message news:2007091115023216807-PostInGroups@wherevercom...
>> On 2007-09-11 14:50:53 -0700, Michael Fesser said:
>>
>>> .oO(Good Man)
>>>
>>>> Confused but working on it wrote in
>>>> news:2007091114413816807-PostInGroups@wherevercom:
>>>>
>>>>>
>>>>> //NOT WORKING - shows the little blue question mark box
>>>>> echo "";
>>>>
>>>> This means: show an image, the source of which is at the top of the
>>>> server. Perhaps you should put the entire path to the image, relative
>>>> to where your PHP script is being called from.
>>>>
>>>> echo "";
>>>
>>> Additionally HTML also allows single quotes, which avoids the ugly
>>> escaping:
>>>
>>> echo "";
>>>
>>>> according to your script, the images are located in the directory
>>>> "images". therefore, you need the directory name in addition to the
>>>> image name. should be:
>>>>
>>>> echo "";
>>>
>>> echo "";
>>>
>>> I find that much more readable.
>>>
>>> Micha
>>
>> Wow, Thanks!
>> I didn't even think to try adding the images/ part to the line. Figured
>> it was outputting the filename so...
>>
>> Mixing single and double quotes in the case eliminates the need to
>> escape I take it.
>>
>> Now it appears I have files named "." and "..", well, back to the manual...
>>
>> Thanks again
>
> . refers to the current directory, and .. refers to its parent - its an
> Operating System thing.
>
> Cheers
>
> Ron
Teah I scarcely remember taking that Unix class at Deanza College.
Should have saved my notes but most likely not relevant anyway. :)
Re: Can"t Escape
am 12.09.2007 06:51:46 von Confused but working on it
On 2007-09-11 15:12:16 -0700, Michael Fesser said:
> .oO(Confused but working on it)
>
>> Now it appears I have files named "." and "..", well, back to the manual...
>
> readdir() returns _all_ directory entries, normal files and other
> directories. You can use is_file() or is_dir() to filter out the
> unwanted. See the manual for details and examples.
>
> Micha
I got this from the manual:
var_dump(is_dir('a_file.txt')) . "\n";
var_dump(is_dir('bogus_dir/abc')) . "\n";
var_dump(is_dir('..')); //one dir up
?>
The above example will output:
bool(false)
bool(false)
bool(true)
Don't think I need the var dump part. Below I inserted where I think
the test should go. Basically read from the directory, test to see if
it's a dir, if a dir get the next $file, if not echo. I don't think I
can replace the readdir with the is_dir because the first two items ARE
directories so I can't tell it to stop if it sees a dir.
//Open images directory
$dir = opendir("images");
//List files in images directory
while (($file = readdir($dir)) !== false)
{
// Test for file or directory with is_dir like if $file is a directory
get the next $file.
echo "";
}
closedir($dir);
?>
I didn't see any very simple examples of get me everything that is a
".jpg" type of thing which would work too.
Time for some sleep. :)
Re: Can"t Escape
am 12.09.2007 14:03:23 von Jerry Stuckle
Confused but working on it wrote:
> On 2007-09-11 15:12:16 -0700, Michael Fesser said:
>
>> .oO(Confused but working on it)
>>
>>> Now it appears I have files named "." and "..", well, back to the
>>> manual...
>>
>> readdir() returns _all_ directory entries, normal files and other
>> directories. You can use is_file() or is_dir() to filter out the
>> unwanted. See the manual for details and examples.
>>
>> Micha
>
> I got this from the manual:
>
>
> var_dump(is_dir('a_file.txt')) . "\n";
> var_dump(is_dir('bogus_dir/abc')) . "\n";
>
> var_dump(is_dir('..')); //one dir up
> ?>
> The above example will output:
> bool(false)
> bool(false)
> bool(true)
>
> Don't think I need the var dump part.
No, that's showing how is_dir works, not necessarily "live code".
> Below I inserted where I think the
> test should go. Basically read from the directory, test to see if it's a
> dir, if a dir get the next $file, if not echo. I don't think I can
> replace the readdir with the is_dir because the first two items ARE
> directories so I can't tell it to stop if it sees a dir.
>
> //Open images directory
> $dir = opendir("images");
> //List files in images directory
> while (($file = readdir($dir)) !== false)
> {
> // Test for file or directory with is_dir like if $file is a
> directory get the next $file.
> echo "";
> }
> closedir($dir);
> ?>
>
> I didn't see any very simple examples of get me everything that is a
> ".jpg" type of thing which would work too.
>
> Time for some sleep. :)
>
And you won't find examples for everything you want to do. There are
too many possibilities. You need to get familiar with the language and
function calls so you can look up what you need. I find having a local
copy of the PHP doc (as a windows help file) is quite useful.
To get a file extension, check out
http://us2.php.net/manual/en/function.pathinfo.php
Then you can compare on the extension. Just a warning - if the files
are uploaded by users, don't depend on the extension being correct.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================