11 lines
290 B
PHP
11 lines
290 B
PHP
<?php
|
|
$file = file("general.php");
|
|
echo "<form action=\"".$PHP_SELF."\" method=\"post\">";
|
|
echo "<textarea Name=\"update\" cols=\"50\" rows=\"10\">";
|
|
foreach($file as $text) {
|
|
echo $text;
|
|
}
|
|
echo "</textarea>";
|
|
echo "<input name=\"Submit\" type=\"submit\" value=\"Update\" />\n
|
|
</form>";
|
|
?>
|