Ver Mensaje Individual
  #9 (permalink)  
Antiguo 09/02/2010, 15:43
etisdemian
 
Fecha de Ingreso: octubre-2009
Mensajes: 357
Antigüedad: 14 años, 6 meses
Puntos: 1
Respuesta: recuperar variable

esto esta antes del codigo enviado.


Código PHP:
Ver original
  1. //paging------------------  
  2.  $paging = new PHPPaging;
  3.  
  4. trim ($terminobusqueda);
  5.   if (!$tipobusqueda || !$terminobusqueda)
  6.   {
  7.      echo "No has introducido los detalles de la busqueda.  Por favor vuelve e inténtalo de nuevo.";
  8.      exit;
  9.   }
  10.  
  11.   $tipobusqueda = addslashes($tipobusqueda);
  12.   $terminobusqueda = addslashes($terminobusqueda);


i esto luego:



Código PHP:
Ver original
  1. <table width="200" border="0">
  2.       <tr>
  3.       <th width="50" height="10" scope="col">Autor:</th>
  4.       <th width="200" height="10" scope="col"><?php echo stripslashes($row["in_autor"]); ?> </th>
  5.       </tr>
  6.       <tr>
  7.       <th width="50" height="10" scope="col">ISBN:</th>
  8.       <th width="200" height="10" scope="col"><?php  echo stripslashes($row["in_ISBN"]); ?> </th>
  9.       </tr>
  10.       <tr>
  11.       <th width="50" height="10" scope="col">Precio:</th>
  12.       <th width="200" height="10" scope="col"><?php   echo stripslashes($row["in_venta_iva"]); ?> </th>
  13.       </tr>
  14.        <tr>
  15.       <th width="50" height="10" scope="col">Editorial:</th>
  16.       <th width="200" height="10" scope="col"><?php    echo stripslashes($row["in_editor2"]); ?> </th>
  17.       </tr>
  18.       <tr>
  19.       <th width="50" height="10" scope="col">Año:</th>
  20.       <th width="200" height="10" scope="col"><?php  echo stripslashes($row["in_edicion"]); ?> </th>
  21.       </tr>
  22.       </table>