What would be the best way to clear out all the content of a file without deleting it?
Thanks for your time - Rayn
Try something like:
$file=fopen($file, w); fwrite($file, ""); fclose($file);
Hope it helps
Heh figures it was the most ease way.. there should really be a function to do this.. like fclear()
gets to C'n