Data sanitisation and validation in WordPress

Data is quiet important part of any website whether its a content such as pages or posts or whether they are information passed via forms and stored in the database. And hence a proper security checks are needed to be done whether these data are safe to output or safe to store. Data Validation Data validation […]

Data is quiet important part of any website whether its a content such as pages or posts or whether they are information passed via forms and stored in the database.

And hence a proper security checks are needed to be done whether these data are safe to output or safe to store.

Data Validation

Data validation is the process by which a data is validated whether its correct type or not. For example an email is validated by regular expression that checks
for the format of the email. An amount can be integer or numbers with decimal values. A post code can be combination of 4 digits numeric values and so on.

Data Sanitisation

Sanitisation whereas stands for the filtering or stripping out of all unneeded characters whether they are html tags, javascript etc.

So validation as well as santisation are equally important. The basic rule for secured data is to trust nobody and treat each and every bit of data with precaution before they are passed for storage in databse.

Wordpress provides list of functions to validate different data as:

  1. Integers
  2. HTML/XML
  3. JavaScript
  4. URLs
  5. Database
  6. Filesystem
  7. HTTP Headers
  8. Input Validation
  9. HTML
  10. Email
  11. Arrays

For example is_email($email), checks whether an email is valid or not. In case of invalid email, it returns false.

Similarly, wordpress provides list of functions to sanitise, that is to strip out all unwanted characters. For example sanitise_email() strips out all the whitespaces in email address by any chance the user had type some whitespaces when filling up an form.

More information about Wordpress data validation and sanitisation can be found here.

In conclusion, validation and sanitisation work in co relation with each other. Generally a data is validated first and then sanitised. And if they are needed to be stored in the database, after they are cleared after validation and
sanitisation, are stored in database.

About Author

Robin Thebe

Digital Strategist based in Sydney.

I am multi disciplined web developer based in Sydney focusing around WordPress web design, wordpress development, SEO, SEM and Email Marketing.