Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
Can you be more specific? What do you want to do? – elclanrs Feb 27 '12 at 6:38
1  
See stackoverflow.com/questions/901115/… -- you can do it in pure javascript. – srubin Feb 27 '12 at 6:40
No, it’s not true that you can (normally) “echo” a variable from a PHP script into a JavaScript variable. Perhaps a code fragment will help others answer your questions. – danorton Feb 27 '12 at 6:40
aw my topics going to be shut down again for being unclear.anyway i just want to know if there are other ways of getting the $_GET['variable'] from the url and passing it to a js variable without using <?php echo $_GET['variable'] to set a js variable. No specific uses. i just want to pass the $_GET variable to a js variable using different method if there are other methods out there. – Kester Soriano Feb 27 '12 at 6:43
i know you could do this in javascript 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

marked as duplicate by deceze, PeeHaa 埽, Chase Florell, casperOne Feb 28 '12 at 13:48

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.

2 Answers

This will provide the entire $_GET array to your JavaScript app:

<script type="text/javascript"><!--
_GET = <?php echo json_encode($_GET); ?>;
--></script>
share|improve this answer

The $_GET superglobal is just an array of the querystring.

You can fetch the querystring in javascript with window.location.search, but to use it like $_GET will need some sort of parsing and usually a few regular expressions to handle difficult characters etc.

Just try var qs = window.location.search; and then figure out exactly what you need, and how you will get it.

The easy solution if doing it inline is just echoing $_GET into a variable, like in danorton's answer.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.