Obtener id de manera automatica php-jquery
Buenas estoy realizando una conulta en php y en la consulta tengo la opcion para actualizar un campo y estoy implementando jquery la pregunta es como obtengo el id de manera automatica para actualizar en bd el codigo usado es el siguiente
AQUI ESTA LA CONSULTA
<?php
///////////////////////////////////////////CODIGO PARA REFRESCAR DE MANERA AUTOMATICA LA PAGINA///////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
$self = $_SERVER['PHP_SELF']; //Obtenemos la página en la que nos encontramos
header("refresh:10; url=$self"); //Refrescamos cada 60 segundos
?>
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////SENTENCIA EN JQUERY/////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
<script type="text/javascript" src="jquery.js"></script>
<script>
$("a").click(function() {
var oID = $(this).attr("id?deposito");
})
function realizaProceso(id_deposito, estatus){
var parametros = {
"id_deposito" : id_deposito,
"estatus" : estatus,
};
$.ajax({
data: parametros,
url: 'actualizar.php ',
type: 'post',
beforeSend: function () {
$("#resultado").html("Procesando, espere por favor...");
},
success: function (response) {
$("#resultado").html("Sus datos han sido tomados");
$(":text").each(function(){
$($(this)).val('');
});
}
});
}
</script>
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////CODIGO PHP/////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
<?php
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////LLAMADO A LA CONEXION DE LA BD/////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
include "conexion.php";
$consulta ="select * from $tabla where estatus = 'pendiente'";
$resultado=mysql_query($consulta);
echo "<table width=\"1000\" border=\"1\" align=\"center\">";
echo "<td width=\"150\" aling =\"center\">ID</td>\n";
echo "<td width=\"150\" aling =\"center\">Fecha</td>\n";
echo "<td width=\"150\" aling =\"center\">Usuario</td>\n";
echo "<td width=\"150\" aling =\"center\">Monto</td>\n";
echo "<td width=\"150\"aling =\"center\">Transaccion</td>\n";
echo "<td width=\"150\"aling =\"center\">Banco Emisor</td>\n";
echo "<td width=\"150\"aling =\"center\">Banco Receptor</td>\n";
echo "<td width=\"150\"aling =\"center\">Numero de Referencia</td>\n";
echo "<td width=\"150\"aling =\"center\">Rechazar</td>\n";
echo "<td width=\"150\"aling =\"center\">Acreditar</td>\n";
echo "<td width=\"150\"aling =\"center\">Estatus</td>\n";
echo "<td width=\"150\"aling =\"center\">Accion</td>\n";
while ($fila=mysql_fetch_row($resultado))
{
echo"<tr bgclor=\"#eeeeee\">\n";
echo"<td>$fila[0]</td>\n";
echo"<td>$fila[1]</td>\n";
echo"<td>$fila[2]</td>\n";
echo"<td>$fila[3]</td>\n";
echo"<td>$fila[4]</td>\n";
echo"<td>$fila[5]</td>\n";
echo"<td>$fila[6]</td>\n";
echo"<td>$fila[7]</td>\n";
echo"<td><input name=\"rechaza\"type=\"checkbox\" value=\"Acreditar\"></td>\n";
echo"<td><input name=\"estatus\" id=\"estatus\" type=\"checkbox\" value=\"Acredita\" /></td>\n";
echo"<td>$fila[10]</td>\n";
echo"<td> <input type=\"button\" href=\"javascript:;\" onclick=\"realizaProceso( $('#id_deposito').val(),$('#estatus').val());return false;\" value=\"Registrar\"/></td>\n";
echo "</tr>\n";
}
echo "</table>\n";
?>
<html>
<body>
<td colspan="2" aling "center"></tr><td>Resultado:<tr><td colspan="2"> <span id="resultado">Registre su Deposito o Transferencia</span></td>
</body>
</html>
Y ESTE EL ARCHIVO QUE ACTUALIZA EN LA BD
<?php
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////LLAMAMOS EL ARCHIVO DE CONEXIÓN///////////////////////////////////
include ("conexion.php");
$fecha=$_POST[ 'fecha'];
$usuario=$_POST[ 'usuario'];
$monto=$_POST[ 'monto'];
$operacion=$_POST['operacion'];
$b_emisor=$_POST[ 'b_emisor'];
$b_receptor=$_POST[ 'b_receptor'];
$n_operacion=$_POST[ 'n_operacion'];
$estatus= pendiente;
mysql_query("insert into deposito(fecha,usuario,monto, operacion,b_emisor,b_receptor,n_operacion, estatus) values ('$fecha','$usuario','$monto','$operacion','$b_emisor','$b_receptor','$n_operacion','$estatus')");
?>