<? // для php 4 if (!function_exists('file_put_contents')) { function file_put_contents($file,$data) { $f=@fopen($file, 'w'); return @fwrite($f, $data); @fclose($f); } } ?>