View previous topic :: View next topic |
Author |
Message |
Dill -
Joined: 31 Jul 2006 Posts: 2
|
Posted: Mon Jul 31, 2006 12:04 pm Post subject: Why $_GET empty ? |
|
|
<? print_r($_GET); >
---
[_GET] => Array
(
) |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Mon Jul 31, 2006 12:36 pm Post subject: Re: Why $_GET empty ? |
|
|
Dill wrote: | <? print_r($_GET); >
---
[_GET] => Array
(
) |
If there is nothing in the URL after ?, GET will be empty. Try using instead phpinfo() to have a complete list of predefined variables and their values. _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
Dill -
Joined: 31 Jul 2006 Posts: 2
|
Posted: Mon Jul 31, 2006 2:12 pm Post subject: Re: Why $_GET empty ? |
|
|
aprelium wrote: | Dill wrote: | <? print_r($_GET); >
---
[_GET] => Array
(
) |
If there is nothing in the URL after ?, GET will be empty. Try using instead phpinfo() to have a complete list of predefined variables and their values. |
Thanks!
Why Server: Abyss/2.3.2-X1-Win32 AbyssLib/2.3.2
not work with header
'GET http://localhost/my_page.php HTTP/1.0
Host: localhost'
only 'GET /my_page.php HTTP/1.0
Host: localhost'
It's not good.
And may i config server for used php as isapi, not cgi-bin. |
|
Back to top |
|
 |
loloyd -
Joined: 03 Mar 2006 Posts: 435 Location: Philippines
|
Posted: Tue Aug 01, 2006 7:56 am Post subject: |
|
|
Hmm... according to HTTP/1.0 protocol RFC 1945, section 5.1.2 Request-URI,
RFC 1945 wrote: | Request-URI = absoluteURI | abs_path
The absoluteURI form is only allowed when the request is being made to a proxy. | Since, you are directly interfacing with AWS and not with a proxy, then AWS should only work with abs_path. Hence, compliance is maintained. _________________
http://home.loloyd.com/ is online if the logo graphic at left is showing. |
|
Back to top |
|
 |
|