---------------------------------------------------
| Date: 2003-02-17 00:21:09 |
| Filename: writefile.php |
| Author: detour@metalshell.com |
| |
| http://www.metalshell.com/ |
---------------------------------------------------
");
print_file($outfile);
// Open file for appending
if(!$fd = fopen($outfile, "a")) {
echo("Error opening file.");
exit;
}
// Append the string to the file.
if(!fwrite($fd, $appendstring)) {
echo("Error writing file.");
exit;
}
fclose($fd);
echo("The file now contains:
");
print_file($outfile);
function print_file($file) {
if(!$inf = fopen($file, "r"))
return;
$data = fread($inf, filesize($file));
$data = ereg_replace("\n", "
", $data);
echo $data;
}
?>