vote up 3 vote down star
2

How can I use download.php?get=file.exe with without the get variable, like download.php?=file.exe, using the $_GET in PHP?

flag

why do you want to do that? – SilentGhost Mar 28 at 17:00
Agreed - why bother? – ceejayoz Mar 28 at 17:14

4 Answers

vote up 5 vote down check

You could use $_SERVER['request_uri'] which would allow you to omit the ? completely, leaving you with URLs like example.com/download.php/file.exe

Then, with a bit of URL rewriting (or implementing a bootstrap controller) you could clean it up even more, resulting in example.com/download/file.exe

link|flag
vote up 1 vote down

You can use $_SERVER['QUERY_STRING'] to get everything after the ?.

Edit: Then you could use download.php?file.exe

link|flag
vote up 1 vote down

What you need i address rewritting this wikipedia article should give you enough information to stat with. Specifically, if you use apache, read about mod_rewrite.

link|flag
Seems like I've misunderstood question a bit. Well... :) – ya23 Apr 5 at 22:15
vote up 8 vote down

You can use $_GET[0] or $_REQUEST[0]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.