Author |
Message |
Topic: Why $_GET empty ? |
Dill
Replies: 3
Views: 10172
|
|
<? print_r($_GET); >
---
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.
Thank ... |
Topic: Why $_GET empty ? |
Dill
Replies: 3
Views: 10172
|
|
<? print_r($_GET); >
---
[_GET] => Array
(
) |
|