Note that there are some explanatory texts on larger screens.

plurals
  1. POwhy I am not receiving any firebug console response stuff?
    text
    copied!<p>I have this ajax call in my external javascript file, and I am not getting any stuff from the firebug console, here's my code</p> <pre><code> $.ajax({ type: "POST", url: "classes/ajax.registerpopup.php", timeout: 8000, data: "userid="+userid+"&amp;resumetitle="+resumetitle+"&amp;resumeintro="+resumeintro+ "&amp;name="+name+"&amp;dob="+dob+"&amp;contacttel1="+contacttel1+"&amp;contacttel1type="+contacttel1type+ "&amp;contacttel2="+contacttel2+"&amp;contacttel2type="+contacttel2type+"&amp;contacttel3="+contacttel3+ "&amp;contacttel3type="+contacttel3type+"&amp;primaryemail="+primaryemail+"&amp;secondaryemail="+secondaryemail+ "&amp;skype="+skype+"&amp;facebook="+facebook+"&amp;linkedin="+linkedin+"&amp;twitter="+twitter+ "&amp;messenger="+messenger+"&amp;yahoo="+yahoo+"&amp;aol="+aol+"&amp;summaryofpositionsought="+ summaryofpositionsought+"&amp;summaryofskills="+summaryofskills+"&amp;gender="+gender, success: function(msg){ if(msg == "success"){ alert(msg); $('form#wsrecruitcvhead').fadeOut("normal",function(){ $('div.successpost').fadeIn(1000); }); } else { alert(msg); } }, }); return false; } </code></pre> <p>here's my php code</p> <pre><code>$sql = "INSERT INTO wsrecruitcvhead VALUES($userid,NULL,NULL,'$resumetitle','$resumeintro','$name','$dob','$contacttel1','$contacttel1type', '$contacttel2','$contacttel2type','$contacttel3','$contacttel3type','$primaryemail','$secondaryemail','$skype','$facebook','$linkedin','$twitter', '$messenger','$yahoo','$aol','$summaryofpositionsought','$summaryofskills','$gender',NOW(),NULL)"; if(mysql_query($result)){ echo "success"; } else { echo "error".mysql_error(); } </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload