Is it possible to use a fopen to open a file and print whatever u want under it
I suppose it would go like this:
fopen ("hah.php", "w"); print "fgfgf"; print "Gdgds"; fclose(hah.php);
$fh = fopen("hah.php","r+"); fwrite($fh,"fgfgf"); fclose($fh)
You use fwrite to write to a file.