View Single Post
ישן 13-08-06, 22:20   # 6
בניה
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נחושה
הודעות: 3,434

בניה לא מחובר  

ב"ה


PHP קוד:
<?php
var $file_path='';
var 
$find='';
var 
$replace_with='';
$file=file_get_contents($file_path);
$file=str_replace($find,$replace_with,$file);
$fp=fopen($file_path,"w");
fwrite($fp,$file);
fclose($fp);
?>
  Reply With Quote