Ayuda con ajax y php

Iniciado por edwarditos, 16 Octubre 2013, 17:17 PM

0 Miembros y 1 Visitante están viendo este tema.

edwarditos

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>";
}
}
?>

basickdagger

Cita de: edwarditos en 16 Octubre 2013, 17:17 PM
//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";
   

mm bueno no se si lo notaste...

echo "<td><a href='modificalap.php?idlap=".$fila['idlap']."' ">".$fila['idlap']."</a></td> \n";

prueba así... saludos

edwarditos

Cita de: basickdagger en 16 Octubre 2013, 20:52 PM
mm bueno no se si lo notaste...

echo "<td><a href='modificalap.php?idlap=".$fila['idlap']."' ">".$fila['idlap']."</a></td> \n";

prueba así... saludos

Gracias.. ya lo intente y no queda sigo teniendo ese error

basickdagger

Cita de: edwarditos en 17 Octubre 2013, 08:28 AM
Gracias.. ya lo intente y no queda sigo teniendo ese error
se me fueron unas comillas
prueba así, si te sale error dime cual te aparece...

echo "<td><a href='modificalap.php?idlap=".$fila['idlap']."' >".$fila['idlap']."</a></td> \n";


saludos

edwarditos

#4
Gracias

edwarditos

#5

Gracias hermano tenia error de sintaxis y esa comillas