How do you get this to work?
<Pre>
#Depends on how you want to edit the documents
$fwrite = "a+";
Sets file size
$max_size = 100000;
$url = stripslashes($url);
$file_name = stripslashes($file_name);
The Navigation
$content = "<a href=$url>$file_name</a><br>\n";
Creates/Opens/Reads/Writes to the content file
$fp = fopen($logfile, "$fwrite"); #a+,w
rewind($fp);
fwrite($fp, $content);
fclose($fp);
</pre>