Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/11/2005, 08:42
eogando
 
Fecha de Ingreso: octubre-2005
Mensajes: 12
Antigüedad: 18 años, 6 meses
Puntos: 0
Pregunta Valor de una Variable dentro de un link html

Amigos quiero poner el valor de una variable dentro de un link pero no consigo hacerlo, este es mi codigo:

Código PHP:
  echo "<table width=200 border=2 align=center>";
    echo 
"<tr>";
      echo 
"<td><div align=center>Fecha</div></td>";
      echo 
"<td><div align=center>Hora</div></td>";
      echo 
"<td width=200><div align=center>Contacto</div></td>";
      echo 
"<td><div align=center>Telefono</div></td>";
      echo 
"<td width=200><div align=center>Empresa</div></td>";
      echo 
"<td width=200><div align=center>Mensaje</div></td>";
      echo 
"<td><div align=center>Observaciones</div></td>";
      echo 
"<td><div align=center>Accion</div></td>";
      
    echo 
"</tr>";
  
  while(
$row mysql_fetch_array($resultado))
  { 
      echo 
"<tr>";
      echo 
"<td>".$row["fecha"]."</td>";
    echo 
"<td>".$row["hora"]."</td>";
    echo 
"<td>".$row["persona_contacto"]."</td>";
    echo 
"<td>".$row["telefono"]."</td>";
    echo 
"<td>".$row["empresa"]."</td>";
    echo 
"<td>".$row["msg"]."</td>";
    echo 
"<td>".$row["obs"]."</td>";
    echo 
"<td><A href="eliminar.php?idll='.row[idll].'">Eliminar</td>";
    echo 
"</tr>";
  }
  echo 
"</table>"
Quiero poner el valor de row[idll] para pasarcelo a eliminar.php cual seria la sintaxis correcta??
Desde ya muchas gracias.

Emiliano