Écrire dans un fichier...
... no comments
Writes into a file ...
... no comments
...يكتب في ملف
بدون تعلي
Open in a new window
<?
//#################################################
// find more codes on scripts-n-codes.blogspot.com
//#################################################
function write_to_file ($file, $data) {
$fp = fopen($file, "w");
fwrite($fp, $data);
fclose($fp);
}
?>