Hi there.
I got a book called "PHP and MySQL Web Development" by Sams Publishing, and I am trying to build a mailing list like the one in the book.
I am trying to get PHP to create a new folder, this is the code they use in the book:
@ mkdir("archive/$list/$mailid", 0700);
then to double check if it was made or not, they check by doing this:
if (! mkdir("archive/$list/$mailid", 0700)){
do_html_footer();
exit;
}
I understand what they are doing when using that code, but i keep getting problems with it. I keep getting a message that says this:
Warning: mkdir(archive/1/2): No such file or directory in /home/stoplowb/public_html/MLM/upload.php on line 77
HELP ME, I AM PERPLEXED! I AM SURE IT IS EASY, BUT MY HEAD IS READY TO EXPLODE. PLEASE HELP ASAP!