El problema que tengo es el siguiente, mi query es asi
Código PHP:
$sql = "select * from $tabla where id='$_POST[buscar]' OR cedula='$_REQUEST[buscar]'";
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\wamp\www\php\modificarO.php on line 44
dato no encontrado.
La cosa es que la pagina funciona sim problema alguno solo que no quiero que de el error. Facilmente podria usar el @ en el mysql_fetch_array para que no aparezca pero digamos que no es la idea no.
Ahora pase la siguiente instruccion
Código PHP:
$consulta= mysql_query($sql,$conexion) or die ($sql .mysql_error()."" );
select * from where id='' OR cedula=''You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where id='' OR cedula=''' at line 1
que corresponde a la linea del query
Podrian ayudarme, gracias