Hi
After extracting "titre" from my mysql database, this code works perfectly on localhost (windows, php4.00) but not on my distant web server (linux, php4rc1).
$titre = strtoupper($sql["titre"]) ;
str_replace("é", "É", $titre );
str_replace("à", "À", $titre );
str_replace("è", "È", $titre );
echo $titre ;
Same thing with ereg_replace...
What's the problem ?