[php]
<?php
$wordlist="";
$myfile = fopen(‘pons_ger.txt’, ‘r’) or die(‘Unable to open file!’);// tot el fitxer en una linia sense cr lf
//echo bin2hex($wordlist) . "<br />";
//$search_string = "abbaubar";
while(!feof($myfile)) {
$wordlist= $wordlist. fgets($myfile).’·’; //afegeix indicador de CRLF
//$wordlist= str_replace("$search_string", ".|$search_string",$wordlist);
echo ‘<br>’.$wordlist. ‘<br>’;
}
echo "<br>". $wordlist."<br>";
?>
[/php]