
- You are not logged in. | Login
Pages 1
- Index
- » Discuss atricles
- » Discuss article: "Methods of safe web-applications programming on PHP"
January 19, 2007 9:15 am
- admin
- Administrator


Discuss article: "Methods of safe web-applications programming on PHP"
You can leave your comments here
Discussed article: "Methods of safe web-applications programming on PHP"
January 19, 2007 12:52 pm
- phppat
- Member


Re: Discuss article: "Methods of safe web-applications programming on PHP"
$sql_statement="select password from peoples where name='$PHP_AUTH_USER'";
but it is wrong, it's better to write
$sql_statement="select password from peoples where name='".addslashes($PHP_AUTH_USER)."'";
P.s. magic quotes can check, of course
PHP monster
January 19, 2007 12:54 pm
- monkeydude
- Member


Re: Discuss article: "Methods of safe web-applications programming on PHP"
Use mysql_escape_string function?!
January 19, 2007 1:17 pm
- franzkafka
- Member


Re: Discuss article: "Methods of safe web-applications programming on PHP"
That article really helped me. Thank u, author
Pages 1
- Index
- » Discuss atricles
- » Discuss article: "Methods of safe web-applications programming on PHP"


