Este es mi codigo, el problema es que si manda bien la variable pero cuando hago la consulta sql no me encuentra resultados
Agradezco la ayuda
Código Javascript
:
Ver original<script type='text/javascript'>//<![CDATA[
window.onload=function(){
$.fn.delayPasteKeyUp = function(fn, ms)
{
var timer = 0;
$(this).on("propertychange input", function()
{
clearTimeout(timer);
timer = setTimeout(fn, ms);
});
};
//la utilizamos
$(document).ready(function()
{
$("#ingreso").delayPasteKeyUp(function(){
$("#respuesta").append('Producto: <?php
$codigom = "'+ $('#ingreso').val() +'";
mysql_select_db($database_noticias, $noticias);
echo $query_productos = "SELECT * FROM productos WHERE codigo=$codigom";
$productos = mysql_query($query_productos, $noticias) or die(mysql_error());
$row_productos = mysql_fetch_assoc($productos);
$totalRows_productos = mysql_num_rows($productos);
$kol = $row_productos['producto'];
echo $kol;
?>