View Single Post
ישן 06-05-07, 13:24   # 3
4ior
חבר וותיק
 
4ior's Avatar
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 1,451

4ior לא מחובר  

PHP קוד:
<?
$search_for 
"4561231";

$fc=file("some.txt");
$fo=fopen("some.txt","w");
foreach(
$fc as $line)
{
      if (!
strstr($line,$search_for)) 
            
fwrite($fo,$line);
}
fclose($f);

?>
  Reply With Quote