im in the process of making my own admincp cms, so far i can add news with the news system i made, add affiliates, and beacause ive just found a file editing script i can edit all of the content boxesheres the script i think it can be changed to edit any page
PHP Code:<?php
if ($submit) {
$fp = fopen("data.txt", "w");
fwrite($fp, stripslashes($newdata));
fclose($fp);
}
$fp = fopen("data.txt", "r");
while (!feof($fp)) {
$data .= fgets($fp, 4096);
}
fclose($fp);
?>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<form action="<? print $PHP_SELF; ?>" method="post">
<textarea name="newdata" rows="10" cols="40">
<?
print $data;
?>
</textarea>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>





heres the script i think it can be changed to edit any page

