![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
Código PHP:
$separador='*';
if (eregi('*',$datos[4])) { //me da fallo en el eregi.
split ($datos[4],$separador);
split ($datos[3],$separador);
$numero_links= count($datos[4]);
$indice=0;
while ($indice<=$numero_links) {
print ('>><a href="'.$datos[4][$indice].'"><font color="#990000">
<strong>'.$datos[3][$indice].'</a></font></strong><br>');
$indice++; }
}else{
print ('>><a href="'.$datos[4].'"><font color="#990000">
<strong>'.$datos[3].'</a></font></strong><br>');
}