I am trying to get some data from http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page using the below code.
$some_link = http://itunes.apple.com/us/genre/ios-productivity/id6007?mt=8&letter=A&page=10#page;
$content = file_get_contents($some_link);
echo $content;
But i am getting wrong page instead of the original
Can you please tell me what the problem is?
Thank you.