Quote:
My question is, why isn't $id2 showing brewery_11.jpg in the url I gave at the begining of htis post?
It seems as the though the problem is with the image paths in some way.
|
Quote:
if(file_exists(IMAGE_FS_PATH.$base.'/'.$base.'_'.$id.'jpg'))
|
You're missing a period before "JPG" -- your IF statement will ALWAYS be false!
Use the var_dump(), print_r() functions at any point in time to see the contents of a variable. It may help.
__________________
"You looked at me as if I was eating runny eggs in slow motion." - Gord Downie of The Tragically Hip
Last edited by trache; 05-02-2005 at 11:17 AM..
|