<?php
$fic=fopen("news/homme.txt",r);
while (!feof($fic))
{
$tmp=fgets($fic,2048);
$tmp = ereg_replace("[\\]", "", $tmp);
echo "$tmp<br>";
}
?>
c tout simple et ca marche
avant je remplacait $tmp = ereg_replace("[\\]", "", $tmp);
par $tmp=stripslashes($tmp); et ca marchait pas (fin ca affichait $tmp AVEC les "\" )
[jfdsdjhfuetppo]--Message édité par evr le 01-05-2002 à 17:11:55--[/jfdsdjhfuetppo]