Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/12/2007, 09:07
Sanubrio
 
Fecha de Ingreso: septiembre-2007
Mensajes: 220
Antigüedad: 16 años, 7 meses
Puntos: 1
Re: Porblemas con frames

Código PHP:
$datos = array(
  array(
'http://www.google.com''Google'),
  array(
'http://www.yahoo.com''Yahoo')
);

$codigo '<a href="%s">%s</a>';

foreach (
$datos as $valor)
{
    echo 
sprintf($codigo,
      
$valor[0],
      
$valor[1]
    );