Código PHP:
lo que deseo es que el usuario al darle click al enlace lo envie sin que el usuario lo vea y cargar un formulario que tengo en 13c_formActualizarHipoteca Ver original
$sql = "SELECT * FROM `informehipotecas` WHERE `Solicitante` LIKE '%$busquedaClienteHipoteca%'"; $result = mysqli_query($con, $sql); if (mysqli_num_rows($result) > 0) { // output data of each row while($row = mysqli_fetch_assoc($result)) { $id=$row["id"]; echo "<tr> <td align='right'>" . $row["Matricula"]. " </td> <td>" . $row["Solicitante"]. " </td> <td>" . $row["Prestamo"]. " </td> <td>" . $row["Monto"]. " </td>"; ?> <td><a id="boton" href="13c_formActualizarHipoteca.php?&texto=<?php echo $id?>">Actualizar</a></td> <?php } } else { echo "No existen resultados"; }