Como puedo borrar un registro teniendo el siguiente código escrito? tengo el valor de la variable en jQuery (ese valor es del 'id' del registro para tomarlo como referencia en el borrado del registro mySql) he tratado de pasar el valor de la variable de jquery hacia php mediante post pero nada funciona, se que hay que hacerlo por Ajax pero tampoco me ha funcionado.
/* ESTE ES EL CODIO DE JQUERY */
var onswipe = false;
$('td').swipe({
swipeRight:function(){
if(!onswipe){
onswipe = true;
$(this).prepend('<tecla>delete</tecla>');
$('tecla').addClass('boton_borrar');
$(".boton_borrar").click(function(){
htmlcaja = $(this).parent().children("caja").html();
desde = htmlcaja.indexOf("</span>") + "</span>".length;
hasta = htmlcaja.indexOf("<br");
valueid = htmlcaja.substring(desde,hasta).replace(/ /g,'');
$.post( "http://waybill.hyeride.com/delete.php?id="+valueid);
});
}else{
$('tecla').remove();
onswipe = false;
}
}
});
y
/* ESTE ES EL CODIGO PHP (delete.php) */
<?php
$con = include('conexion/conexion.php');
$id = $_POST['valueid'];
$registro = mysql_query("SELECT id FROM waybill WHERE id = '$id'", $con) or die ("connection error". mysql_error());
if($registro=mysql_fetch_array($registro)){
mysql_query("DELETE FROM waybill WHERE id='$id'", $con) or die ("connection error". mysql_error());
echo "se ha eliminado el dato";
}else{
echo "problemas al eliminar los datos";
}
?>