I've got a PHP script coded from scratch and I need it to be debugged and checked for possibles holes. I can't spend anything on it. Any suggestions on how I should manage this? Thanks.
Birdman
7:06 pm on Feb 26, 2006 (gmt 0)
Add this to the top of the script:
<?php error_reporting('E_ALL'); ..rest of script... ?>
That's a good start. As far as holes(ie. security), you'd have to pay someone for that I think.
phparion
8:19 pm on Feb 26, 2006 (gmt 0)
should i offer my services? :D
khaki monster
3:45 am on Feb 27, 2006 (gmt 0)
you should also add preventive measures for SQL injections... :) just in case.