Does any one know how to write to a file?
So once I click submit, it will replace the file with the new information?
Edit:
Dosnt matter, its easy
<?php
$File = "test.asx";
$Handle = fopen($File, 'w');
$Data = "Text";
fwrite($Handle, $Data);
print "Data Written";
fclose($Handle);
?>






Reply With Quote


.

