Possible Duplicate:
Get query string values in JavaScript
I know you could do this by echoing the variable $_GET['whatevervariable'] to a js variable.i was just wondering if there are other methods that can also do this?
I know you could do this by echoing the variable $_GET['whatevervariable'] to a js variable.i was just wondering if there are other methods that can also do this? |
|||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
This will provide the entire $_GET array to your JavaScript app:
|
|||
|
|
|
The You can fetch the querystring in javascript with Just try The easy solution if doing it inline is just echoing $_GET into a variable, like in danorton's answer. |
|||
|
|
var kester=<?php echo $_GET['variable'] ?>given you have a url like this blabla.com/test.php?variable=hello – Kester Soriano Feb 27 '12 at 6:46