Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to accomplish a JavaScript form that will load the result from a PHP request on an external website, after a text box is filled out.

Right now, I have

    <script type="text/javascript"/>
function sendrequest() {
document.location="myphpsite.com/submit.php?tb="+document.getElementById("tb").value;
}
</script>
<form>
<input type="text" id="tb" onChange="sendrequest()" />
</form>

This code is going nowhere, because from my current knowledge, you can only load PHP variables on startup, by using "script src=... ", and by having the php page return some javascript code.

What I'm looking for is a way to request/receive php variables dynamically, something that would work like this:

    <script type="text/javascript">
function getdata() {
return document.get("myphpsite.com/submit.php?tb=hi");
}
</script>

In other words, is there a function that dynamically "reads" a website, and returns the raw text?

share|improve this question
2  
You want to hear about AJAX. – moonwave99 Nov 6 '12 at 22:44

2 Answers

up vote 1 down vote accepted

http://w3schools.com/ajax/default.asp

You should go read this and then read it again, AJAX is what you need.

share|improve this answer

best example with PHP and AJAX -

http://www.w3schools.com/php/php_ajax_database.asp

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.