php5 migration
06-03-2006 | Comments Off
I recently upgraded my local testing server to php5. Right off the bat I experienced two differences from my previous php4 setup.
First, for the ‘I need a solution quick’ people.
- Don’t use $PHP_SELF in your forms & links. Use $_SERVER[’PHP_SELF’]
- To get error reporting back on. Search your php.ini for the ‘Error handling and logging’ section and uncomment (by removing the semi-colon) the type of error reporting you want. (eg. error_reporting = E_ALL)