View Single Post
Old Nov 14th, 2006, 6:58 PM   #2
melbolt
Professional Programmer
 
melbolt's Avatar
 
Join Date: Feb 2005
Location: PA, USA
Posts: 254
Rep Power: 4 melbolt is on a distinguished road
Hi,

I didn't examine the code very in-depth, but I do see that you are probably going to have some problems where you attempt to include the contents of variables into parameters and or strings.

an example would be

php Syntax (Toggle Plain Text)
  1. stat("$etmain/$file1");

how about trying this instead

php Syntax (Toggle Plain Text)
  1. stat($etmain. "/" .$file1);


there are other occurrences in this code where you do similar things with your variables. try fixing these up and then post back what you get and we'll work on the next step.
__________________
I have never let my schooling interfere with my education. -Mark Twain-

Xbox live gamertag: melbolt
melbolt is offline   Reply With Quote