Computer Science, asked by Prajwalgowda8405, 1 year ago

How to show data in alert from other website to our php page using ajax.get() method?

Answers

Answered by vernon10112
0

Here's the code I have so far:

<script type="text/javascript">
function returnwasset(){
alert('return sent');
$.ajax({
type: "POST",
url: "process.php",
data: somedata;
success function(){
//echo what the server sent back...
}
});
}
</script>

Similar questions