Let's say I have set up a PHP variable like this:
$phpurl = $_GET["url"]
where url
value will be from GET
variable query. The value of "url" will be some sort of html page link with some content like "myContent.html
" I want to load.
How can I get this "url" value, which I have assigned to the variable "$phpurl
"
and use it in the Ajax/Jquery page load request?
$('.content').load(' ** need the value of "$phpurl" to be placed here ** ');
Hope the question is clear. I am pretty new into programming. Thanks.