Hey,
Can onload function grab get variable from the url passed?
Code:window.onload = function() {
AjaxRequest('main','./displaycontent.php?id=0');
}
Thanks
Printable View
Hey,
Can onload function grab get variable from the url passed?
Code:window.onload = function() {
AjaxRequest('main','./displaycontent.php?id=0');
}
Thanks
This will probably give you what you need.
But, as Paul mentioned, with a bit more detail of your *problem* the many skilled experts here could help you devise one or many solutions(s).
Erm how to explain it..
I want to send a variable to the next page in the url.. On the page it is sent to I have an onload function (as above) to populate a div set by calling a php script into it using ajax.. The problem is that I cant capture the variable sent across the url to start with the correct record.. in which the data will then be paginated in the div using ajax for the page loads..
Hope its making some sence
Cheers
Ahh.. Sweet, thanks for that..