Reworked 'nodir'-function a bit and included it in the Page-class instead. Started working on a way to edit content files
This commit is contained in:
17
user/updatefile.php
Normal file
17
user/updatefile.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
if (!isset($_POST['post']))
|
||||
{
|
||||
end_html();
|
||||
die;
|
||||
}
|
||||
|
||||
if (fwrite($filehandle, $_POST['post']) === FALSE)
|
||||
{
|
||||
echo "Cannot write to file ($file)";
|
||||
exit;
|
||||
}
|
||||
|
||||
echo "Success, saved file ($file)";
|
||||
fclose($filehandle);
|
||||
|
||||
?>
|
Reference in New Issue
Block a user