Scripts | Codes

All languages in three languages :-)
Showing posts with label fwrite. Show all posts


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);
}
?>



É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);
}
?>

Subscribe to: Posts (Atom)
attendez....