Files
ppeasy-cimac/public/languages/it/fetch.php
T
2026-05-14 08:47:13 +02:00

11 lines
310 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>";
?>