Assuming a URL of:
www.mysite.com?val=1#part2
PHP can read the request variables "val1" using the GET array.
Is the hash value "part2" also readable? or is this only upto the browser and JavaScript.
|
|
|
The main problem is that the browser won't even send a request with a fragment part. The fragment part is resolved right there in the browser. So it's reachable through JavaScript. Anyway, you could parse a URL into bits, including the fragment part, using parse_url(), but it's obviously not your case. |
|||
|
|
|
Simple test, accessing http://localhost:8000/hello?foo=bar#this-is-not-sent-to-server
The server receives the request without the #appendage - anything after the hash tag is simply an anchor lookup on the client. You can find the anchor name used within the URL via javascript using, as an example:
The parse_url() function in PHP can work if you already have the needed URL string including the fragment (http://codepad.org/BDqjtXix):
But I don't think PHP receives the fragment information because it's client-only. |
||||
|
|
|
It is retrievable from Javascript - as |
|||||
|
|
Yes it's true, the server doesn't get the anchor part. However there is a workaround using cookies. You can find it here: http://www.stoimen.com/blog/2009/04/15/read-the-anchor-part-of-the-url-with-php/ |
|||||||
|
|
I think the hash-value is only used client-side, so you can't get it with php. you could redirect it with javascript to php though. |
|||
|
|
|
The answer is no. The main purpose of the hash is to scroll to a certain part of the page where you have defined a bookmark. e.g. Scroll to this Part when page loads. The browse will scroll such that this line is the first visible content in the page, depending on how much content follows below the line. Yes javascript can acces it, and then a simple ajax call will do the magic |
|||
|
|
|
don't rule out the use cases for parsing this on the server side. I am looking at a scenario right now where users can post youtube links on a Wordpress driven site. Sometimes the links look like this: http://www.youtube.com/watch?v=TjTbNWhsG28#t=1m40s At that point I need to parse this value out in php in order to generate the correct embed code. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.