if(isset($_REQUEST['Submit'])){
  $somecontent = stripslashes($_POST['somecontent']);
  // Let's make sure the file exists and is writable first.
  if (is_writable($filename)) {
 // In our example we're opening $filename in append mode.
  // The file pointer is at the bottom of the file hence
  // that's where $somecontent will go when we fwrite() it.
  if (!$handle = fopen($filename, 'w')) {
  echo "Cannot open file ($filename)";
  exit;
  }
 // Write $somecontent to our opened fi<form action="" method="get"></form>le.
  if (fwrite($handle, $somecontent) === FALSE) {
  echo "Cannot write to file ($filename)";
  exit;
  }
echo "Success, wrote ($somecontent) to file ($filename) <a href=".$_SERVER['PHP_SELF']."> - Continue - ";
fclose($handle);
} else {
  echo "The file $filename is not writable";
  }
  }
  else{
  // get contents of a file into a string
$handle = fopen($filename, "r");
  $somecontent = fread($handle, filesize($filename));
  fclose($handle);
  ?>
<h1>Edit file <? echo $filename ;?></h1>
<form name="form1" method="post" action="">
<p>
<textarea name="somecontent" cols="80" rows="10"><? echo $somecontent ;?></textarea>
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
</form>
<?
  }
  ?>
<p align="center">script by <a href="http://www.wallpaperama.com">wallpaperama.com</a></p>
<p align="center">support and hosting by <a href="http://www.webune.com">webune.com</a> </p>