How can I use download.php?get=file.exe with without the get variable, like download.php?=file.exe, using the $_GET in PHP?
|
2
|
|||||
|
|
|
You could use 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 |
||
|
|
|
|
You can use $_SERVER['QUERY_STRING'] to get everything after the ?. Edit: Then you could use download.php?file.exe |
|||
|
|
|
|
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. |
||
|
|
|
You can use $_GET[0] or $_REQUEST[0] |
||
|
|
