in reply to Re^2: GET overriding POST?
in thread GET overriding POST?
Well, perhaps you'd better ask on php monks :) because it's obviously a PHP problem. The php include() is used only to include PHP code. It can't work with anything else. And the documentation for virtual() states that
Warning
The query string can be passed to the included file but $_GET is copied from the parent script and only $_SERVER['QUERY_STRING'] is filled with the passed query string. The query string may only be passed when using Apache 2. The requested file will not be listed in the Apache access log.
So basically if you're using Apache 1.3, you're stuck.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: GET overriding POST?
by keegan (Initiate) on Mar 16, 2006 at 17:04 UTC | |
|
Re^4: GET overriding POST?
by keegan (Initiate) on Mar 16, 2006 at 22:02 UTC | |
by wazoox (Prior) on Mar 17, 2006 at 11:57 UTC |