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