Hello,
I am trying to get a script to make a directory but I just can't get it to work. Does the pathname need to include the absolute directory? The command line I am trying to use is mkdir("/jobs/$_POST[job_id]/",0755); and I have set the permissions of the jobs folder to 777. My absolute path is /home/xjdesig/public_html.
Cheers
Have you tried it with the absolute path?
Yeap
mkdir("/home/xjdesig/public_html/jobs/".$_POST['job_id']."/", 0755);
If you get errors, what are they?
CHEERS! ALL WORKS NOW!!
Did my code fix it?
Since it is fixed please mark this thread resolved at the bottom of the page.
yes. ok