In my php file I am creating a login, into extreme detail so Im not gonna post it but I am also new to php and I need help with one thing. I'm not sure if $_SESSION could work for this but if it does I wouldn't know how to do it.
This is what i'm wondering... If i had someone log in could I have a variable (there username so I don't care if it is stored in the url somehow.) be passed from page to page and be read into each file by calling it. Then could I also have the variable be emptied
Also one simpler problem...how could I create a folder in php?
My directory still isn't working
if (is_writable('/users')) {
if (mkdir('/users/$finalusername')) {
// success
}
}
$myFile = "/users/$finalusername/$finalusername.txt";
$fh = fopen($myFile, 'w') or die("There was an error in creating your account. <br />");
$stringData = "$finalusername\n";
fwrite($fh, $stringData);
$stringData = "$finalpass\n";
fwrite($fh, $stringData);
$stringData = "$finalemail\n";
fwrite($fh, $stringData);
fclose($fh);
}
