Revision [263]
This is an old revision of SecurePHP made by WojciechLisiewicz on 2007-06-13 07:11:26.
Making PHP secure
- do not use "register globals"
- /etc/php.ini > register_globals = OFF
- if you use "register_globals", then initialize every variable!
- do not trust incoming data
- you shouldn't use "include($_GET['seite']);"