editform.php:
CODE
<?php
echo ' <img src=http://bdcadmin.vndv.com/BDC.bmp /> <br> <br>';
$myFile = "./files/$_REQUEST[filename]";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "$_REQUEST[filetext]";
fwrite($fh, $stringData);
fclose($fh);
echo 'File was edited/created successfully! Please wait for page to refresh...<meta http-equiv="refresh" content="3; url=home.php" />';
?>
echo ' <img src=http://bdcadmin.vndv.com/BDC.bmp /> <br> <br>';
$myFile = "./files/$_REQUEST[filename]";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "$_REQUEST[filetext]";
fwrite($fh, $stringData);
fclose($fh);
echo 'File was edited/created successfully! Please wait for page to refresh...<meta http-equiv="refresh" content="3; url=home.php" />';
?>