hi i want to write a content in $text into the file. For that i wrote the below code .But i run that code i got the following errors.How i avoid that errors and write the whole content in $text into the file.plz help me PHP Code: <?php $handle = fopen ( "myfile.php" 'w+' ); if( $handle ) $text = "<?php include('ClassName.class');$myclass = &new ClassName; echo $myclass->myfunction1(); ?>" ;  
...(more)