Jump to content

AJAX code not working


monim20

Recommended Posts

I have this function which uses ajax ,but this function is not working ,I tried a lot ,but not able to figure out where is the problem ,I am trying to create alert if user inserts duplicate entry in database using check-box selection

 

 


<script>
function func(e,eid,emprid) {

if(document.getElementById(e).checked){
var dataString =        'eid='+eid
+'&emprid='+emprid
;


$.ajax({
type:"POST",
url: "mylistcheck.php",
data: dataString,
success: function(result){

if(result!='0')
{
modal.open({content: "<span style=\"color:red\" ><h2>You have already selected  candidate </h2></span>"});
document.getElementById(e).checked=false;
}

}
});
}

}

</script>

mylistcheck.php file

 

<?php require_once("includes/session.php"); ?>
<?php require_once("includes/connection.php"); ?>
<?php require_once("includes/functions.php"); ?>
<?php
$eid=$_POST['eid'];
echo "eid".$eid;
$emprid=$_POST['emprid'];
echo "rid".$emprid;

$sqlchecklist="SELECT * FROM selected_candidate WHERE eid='{$eid}' AND rid='{$emprid}' ";
$checklistres=mysql_query($sqlchecklist);
$list_check=mysql_num_rows($checklistres);
echo "numrows listcheck".$list_check;
if($list_check>0)
{
   echo "1";
}
else
{
   echo "0";
}
?>

check-box code

 

echo "<td><input id=\"select_candi{$i}\" onclick=\"javascript:func(this.id,{$data_set['eid']},{$emprid})\" type=\"checkbox\" name=\"check_candi[]\" value=\"{$data_set['eid']},{$emprid}\"/></td>"; 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.