02-10-2005, 18:53
|
|
|
חבר מתאריך: 25.08.03
הודעות: 9,114
|
|
קודם כל תכניס את הקוד כן בהודעה בין תגי PHP שבעורך, כדי שנוכל לקרוא אותו.
קוד PHP:
<?php $filename = '123.phps'; $text = $_POST['phps']; $text = str_replace("<A href="file://\","",$text">\\","",$text); $handle = fopen($filename,'w+'); if (fwrite($handle, $text) === FALSE) { echo "Cannot write to file ($filename)"; exit; } else { echo "good"; } ?>
עריכה:
עכשיו תשים לב לבד לשגיאה, רמז: במחרוזת שהפונקציה str_replace אמורה לקבל...
|