Hi All,
Green as grass on this so very sorry…but here is my question:
I have a directory called memberFiles, which automatically makes a directory when someone signs up, where they are allowed to add a graphic. mkdir(“memberFiles/$id”, 0755); it works just fine.
Is it possible —to automatically make another directory that has a form inside it once someone signs up?
I tried to add another line below the one that works so ie here is how it looked:
mkdir(“memberFiles/$id”, 0755);
mkdir(“memberForm/$id”, 0755);
I tried to add it, but that did not work. It did not make a folder.
So how does one go about doing this?
Thanks for all your help in advance!!!
Lynn