<html>
<head>
<title>Start File Creator</title>
</head>
<body>
<?php
if (!$_REQUEST['content']) {?>
<p style="text-align:center">
<form method="post" action="sfc.php">
<textarea name="content" style="width:100%; height:500px; font-family:"Courier New", Courier, monospace; border: 1px solid #000000; background-color: #FFFFFF"></textarea><br />
<input type="submit" name="submit" value="Create Start File" />
</form>
</p>
<?php }
else {
if (file_exists('start')) unlink('start');
touch('start');
$f = fopen('start','w');
fwrite($f, $_REQUEST['content']);
fclose($f);
echo "<p>Click <a href='start'>here</a> and then press CTRL+S to save to your desktop.</p><p>Click <a href='sfc.php'>here</a> to create a new start file.</p>";
}
?>