Salve a tutti,
ho trovato questo codice:
codice:
<? 
$stringa = "Visita http://www.html.it o manda una email a info@html.it";
$stringa = preg_replace( '/(http|ftp)+(s)?:(\/\/)((\w|\.)+)(\/)?(\S+)?/i', '\0', $stringa ); 
echo $stringa;
?>
che trasforma i testi dove c'è http o ftp prima in links... vorrei farlo funzionare anche per le e-mail...
Come si fa?
Grazie mille!