summaryrefslogtreecommitdiffstats
path: root/edittext.php
blob: 6fbe00e4d880b8e2e607a93e384b4c93e15b3d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
session_start();
$fieldname = $_REQUEST['fieldname'];
$encrypt_pass = @file_get_contents('files/password');
if ($_SESSION['l'] != $encrypt_pass) {
  header('HTTP/1.1 401 Unauthorized');
  exit;
}

$content = trim(rtrim(stripslashes($_REQUEST['content'])));

$file = @fopen("files/$fieldname", "w");
if (!$file) {
  echo "Editing failed. Set correct permissions (755) to the 'files' folder.";
  exit;
}

fwrite($file, $content);
fclose($file);
echo $content;
?>