Hi,
As you are unable to use a database it will make your life very hard when testing it if you still cant write to files. But i used a php-fopen mechanism to open/write files:
function write($file, $str) {
if($fd = @fopen($file, "a")) {
fputs($fd, $str);
fclose($fd);
}
}
Using this function you should be able to write so a file-pointer. $str means it can be any string link in this example:
$my_string = "Hello My Name Is Bar\n";
write("/emcb/foo.bar", $my_string);
But your admin system will have to load usernames/passwords from a file which isnt so secure, but if you still want to come back to this thread.
Elfyn