<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="90127.js"></script>
</head>
function drupal(user){
$.ajax({
data: {
user: user.getAttribute('data-user'),
},
type: 'POST',
url: 'getnew.php',
dataType: 'json',
success: function(response){
if(response.isOkay){
alert (response.text);
}
else{
alert(response.notOkayText);
}
},
error: function(xhr, status, error){
console.log(xhr.responseText);
}
});
}
bindParam
, а вот как наоборот сделать что нужно поменять вbindParam
?Вот то что есть:
Вот что надо поставить в
bindParam
, что бы избежать такой ситуации?