View Single Post
ישן 21-02-08, 21:49   # 10
FuZuL
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Oct 2006
הודעות: 354

FuZuL לא מחובר  

לא יודע לעבוד עם ajax
אבל מה שהראית זה נחמד לקחת את המחרוזת דר get וזה..

* מה שאני צריך לעשות זה רק בקובץ
script.php
קוד:
$file = 'path/file.txt';
$str = $_GET['stringToWrite'];
		$fileopen = @fopen($file, "a+");
		$read = @fread($fileopen, filesize($file));
		if(strstr($read, $str) != true){
			$value = "<br />".$str;
			@fwrite($fileopen, $value);
		}
		@fclose($fileopen);
עוד משהו?
__________________
PHP קוד:
1337 (_)83||-|4><><0|

Last edited by FuZuL; 21-02-08 at 22:02..
  Reply With Quote