Websites' Query Strings [URL]
#5

Quote:
Originally Posted by amirab
Посмотреть сообщение
i mean like these sites : blahblah.com/blah.php?a=blah&b=blah&.....
but i want to find and get it from another website because it's hidden or using HTML Post way
These websites are running apache's mod_rewrite with direct URL management on the Server side, so there are no GET parameters to be passed over the URL(besides the URL itself).

Little example from the Slim Framework:
PHP код:
$app->get("/User/:name", function($name) {
    echo 
"Hello there {$name}!";
}); 
So, when You access the website URL "blablabla.com/User/GWMPT", the page will output:
Hello there GWMPT!

And like you can see, there are no GET variables being passed over the URL.
Reply


Messages In This Thread
Websites' Query Strings [URL] - by amirab - 16.07.2015, 11:02
Re: Websites' Query Strings [URL] - by KingHual - 16.07.2015, 11:06
Re: Websites' Query Strings [URL] - by Extremo - 16.07.2015, 11:09
Re: Websites' Query Strings [URL] - by Mauzen - 16.07.2015, 11:37
Re: Websites' Query Strings [URL] - by GWMPT - 16.07.2015, 12:32
Re: Websites' Query Strings [URL] - by Mauzen - 16.07.2015, 12:42
Re: Websites' Query Strings [URL] - by Crystallize - 16.07.2015, 12:50
Re: Websites' Query Strings [URL] - by KingHual - 16.07.2015, 12:51
Re: Websites' Query Strings [URL] - by StuartD - 16.07.2015, 13:50
Re: Websites' Query Strings [URL] - by Extremo - 16.07.2015, 20:54

Forum Jump:


Users browsing this thread: 3 Guest(s)