PHP buffer overruns

illurbare

New Member
Are there any known points to be careful about buffer overruns in PHP? Currently I take an email address from a form, run it through \[code\]preg_match\[/code\] to check it's only a single address, call the \[code\]mail\[/code\] function with it, and store another load of form data in a database using \[code\]PDOStatement::bindValue()\[/code\].Anything to worry about?
 
Back
Top