View Single Post
  #3 (permalink)  
Old 10-23-03, 06:13 AM
khibinite khibinite is offline
Newbie Coder
 
Join Date: Jun 2003
Location: Russia, Murmansk region, Kirovsk city
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Stefan
there are a lot of articles on this topic. you should do a google on "php security" or something like that.

very important things to notice are filetype checking when you have a file upload, cross site scripting issues (functions like htmlspecialchars and htmlentities are useful here) and interaction with the database (addslashes (for things going into the database) and stripslashes (for things coming out of the database) are useful here).

Thank you, I found the subject article by John Coggeshall.
Reply With Quote