i have two problems with jquery $.ajax. first problem is ihave a php file named action.php and here the code:
if($_GET['action']=='add'){
//rest of the code here
}
. Ve ben formu doldurur zaman o aramak için jquery $ Ajax işlevini kullanın:
$.ajax({type:"POST", url:"action.php?action=add", data:$("#form").serialize(), cache:false, timeout:10000});
Bu çalışıyor ama ben bilmek istedim verilerle kodu ve url değil eklemek = eylemi göndermek için yine de var mı?
ve ben sahip ikinci bir sorun i bir bağlantı olması:
<a href="#" onclick="delete(4);">delete row from mysql where id is 4</a>
ve bir jquery fonksiyonu:
function deleteUser(id){
$.ajax({type:"POST", url:"action.php?action=delete", data:"id="+id, cache:false, timeout:10000});}
ve tabii action.php kodu:
if($_GET['action']=='deletestudent'){
mysql_query("DELETE FROM `students` WHERE `student_id` = {$_POST['id']}");
}
ama ben work.what yapmalıyım değil mi?