16.07.2015, 12:32
Quote:
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 |
Little example from the Slim Framework:
PHP код:
$app->get("/User/:name", function($name) {
echo "Hello there {$name}!";
});
Hello there GWMPT!
And like you can see, there are no GET variables being passed over the URL.