Re: [PHP] Newbie - Request interface for PHP 5 website

2005-06-03 Thread Greg Donald
On 6/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: For PHP 4.x sites I used my index page to capture the HTTP request and use a switch statement to call the content or task based on the $_GET and $_POST arrays. That was very inefficient and the Switch case became totally unmanageable

Re: [PHP] Newbie - Request interface for PHP 5 website

2005-06-03 Thread Jason Barnett
Greg Donald wrote: On 6/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: For PHP 4.x sites I used my index page to capture the HTTP request and use a switch statement to call the content or task based on the $_GET and $_POST arrays. That was very inefficient and the Switch case became totally

[PHP] Newbie - Request interface for PHP 5 website

2005-06-02 Thread [EMAIL PROTECTED]
For PHP 4.x sites I used my index page to capture the HTTP request and use a switch statement to call the content or task based on the $_GET and $_POST arrays. That was very inefficient and the Switch case became totally unmanageable along with the rest of the site. I am re-designing the site