This is a discussion on ajax within the PHP Programming forums, part of the Web Development category; Hi all how to pass and retrieve the variable in same page using ajax ?for examplexmlHttp.open("GET", ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi all how to pass and retrieve the variable in same page using ajax ?for examplexmlHttp.open("GET", url , true); what should be the url?. Thanks in advance |
|
#2
| |||
| |||
|
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
|
#3
| |||
| |||
| Hi buddy, check it out in the following coding... ![]() Code: function httpIntegration(str)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
}
var url="./test.php"
url=url+"?q="+str
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange=stateChangedBro
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
|
#4
| |||
| |||
| Hi, For more details for Ajax usage in PHP Just click here http://www.discussweb.com/php-progra...roduction.html
__________________ With, J. Jeyaseelan Everything Possible |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to use ajax in asp.net and how to install ajax in my system | vel.m8 | ASP and ASP.NET Programming | 5 | 04-08-2008 07:55 PM |
| Why my DB returning nothing when I use AJAX? | S.Vinothkumar | ASP and ASP.NET Programming | 6 | 09-28-2007 10:52 PM |
| AJAX Menu from XML | SaravananJ | ASP and ASP.NET Programming | 5 | 09-05-2007 09:50 AM |
| ASP.NET AJAX secrets | a.deeban | ASP and ASP.NET Programming | 15 | 09-05-2007 06:11 AM |
| Ajax Popup | SaravananJ | C# Programming | 10 | 08-27-2007 11:41 PM |
Our Partners |