Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/12/2006, 15:43
Avatar de jimadri
jimadri
 
Fecha de Ingreso: julio-2006
Ubicación: Buenos Aires
Mensajes: 487
Antigüedad: 17 años, 10 meses
Puntos: 1
Pasar Mas De Una Variable

hola, quiero saber de quwe manera paso mas de una variable a otra pagina.
La manera en que lo hago hoy es esta:
Código HTML:
<table border="0" width="25%" cellpadding="4" cellspacing="0">
  <tr>
    <td width="25%" align="center"><b>A</b></td>
  </tr>
</table>

  <?
  
  while($myrow = mysql_fetch_array($result))
    {

      // Armo link para editar
      $hotel_s_ciudad = "hotel_s_ciudad2.php?id_ciudad=$myrow[id_ciudad]";
         ?>

<table border="0" width="25%" cellpadding="4" cellspacing="0">
  <tr>
    <td width="25%" align="left"><a href="<? echo $hotel_s_ciudad; ?>"><? echo $myrow[desc_ciudad];?></a></td>
  </tr>
</table> 
Me gustaria pasar por ejemplo el id de la ciudad y el id del hotel que busco.