I will try to explain this the best I can.
I am using JQuery to display the contents of an exteal site. If the page URL of the page I was on was http://example.com?id=50, I need to display the ID in the the contents of the exteal page I'm getting.
Let's say this was the code on my exteal site:
<?php echo $_GET['id']; ?>
And I was on the webpage http://example.com?id=50 and I used the code below to get the contents from my exteal site:
<div id="siteloader"></div>
<script>
$("#siteloader").html('<object data="http://tes5bob.x10host.com/Idea/test.php" />');
</script>
'50' should be displayed as in the exteal site, I'm getting the variable id and displaying it, but it doesn't. How do I get it to display?
