Jump to content

Get # from url, please help


louis_coetzee

Recommended Posts

Hi, trying to get the value after the hash '#' in my url.

 

How can I do this? javascript or php?

Please help, facebook doest this when changing an image in the gallery, probably ajax, but must be php related. If possible, how? thaks.

 

See parse_url() in PHP.

 

<?php
$url = 'http://username:password@hostname/path?arg=value#anchor';

print_r(parse_url($url));

echo parse_url($url, PHP_URL_PATH);
?>

 

Hope, this will help you.

 

 

When facebook do it, they use javascript. After the ajax call to get a new image they change the value after the '#' in the url so that the browser back button can still cycle through the pages, even though the page has been updated asynchronously.

 

Have a read of this;

 

http://ajaxpatterns.org/Unique_URLs

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.