views:

25

answers:

2
+1  Q: 

[php] input forms

how can i be sure that someone can not use a form that accepts input on my site to execute code that performs some hack actions?

tnx in adv!

A: 

you cannot. check and double check all user inputs. always

SilentGhost
A: 

ask google for ways to prevent sql-incections and xss-attacks... in very short form: never trust client data!

oezi