Buen día amigos epero y puedan ayudarme con este problema
Tengo una base de datos mysql en la cual hago una consulta con ajax en un formulario con php en el cual a ala hora de ingresar algún carácter muestra o no algún resultado dependiendo si lo que se escribió en el cuadro de búsqueda coincide con algún registro de la base de datos , el problema es que
no puedo mandar el valor de el idlap para que la otra pagina lo reconozca y muestre los datos para actualizarlos
<?php
include 'conexion.php';
$qwerty = $_POST['qwerty'];
$con=conexion();
$sql="select * from laptop where marcal LIKE '%".$qwerty."%'";
$res=mysql_query($sql,$con);
if(mysql_num_rows($res)==0){
while($fila=mysql_fetch_array($res)){
}
echo '<b>No hay sugerencias</b>';
}else{
echo '<b>Sugerencias:</b><br />';
echo '<b></b><br />';
echo "<table border='1'>
<tr>
<th>ID LAPTOP</th>
<th>MARCA</th>
<th>MODELO</th>
<th>NUMERO DE SERIE</th>
<th>MICROPROCESADOR</th>
<th>DISCO DURO</th>
<th>MEMORIA RAM</th>
<th>DESCRIPCION</th>
<th>ACTUAL</th>
</tr>";
while($fila=mysql_fetch_array($res)){
echo "<tr>";
//AQUI ES DONDE NO PUEDO PONER EL ENLACE PARA EDITAR O ELIMINAR
echo "<td><a href='modificalap.php?idlap".$fila['idlap']."'>".$fila['idlap']."</a></td> \n";
echo "<td>" . $fila['marcal'] . "</td>";
echo "<td>" . $fila['Modelol'] . "</td>";
echo "<td>" . $fila['N_seriel'] . "</td>";
echo "<td>" . $fila['microl'] . "</td>";
echo "<td>" . $fila['Capacidad_HDDl'] . "</td>";
echo "<td>" . $fila['Memoria_Raml'] . "</td>";
echo "<td>" . $fila['Descrl'] . "</td>";
echo "<td>" . $fila['extralap'] . "</td>";
echo "</tr>";
}
}
?>