:queasy:
Hi, found myself coding the other day and came upon the problem of fwriting a function into another file. ex,
let say you have fwrite.php and write_to.php
$stuff_to_be_written = "!!----- In here one wants to place an include function which should not execute when running fwrite.php obviusly cause it should be put in the Write_to- file and being able to execute from there if run--------!!";
fwrite($fh, $stuff_to_be_written);
the problem is that the fwrite.php wants to execute the include function but we dont cause we only want it to be written in the next file
do I make any sence ? 😃