I was wondering how can I allow users to enter HTML and CSS to the there profiles safely using PHP and MySQL like they do on MySpace.
|
|
|
You certainly want to carefully sanitize the data and limit it to a set of "unharmful" statements. E.g. http://htmlpurifier.org/ can help you with that. HTML Purifier is a standards-compliant HTML filter library written in PHP. HTML Purifier will not only remove all malicious code (better known as XSS) with a thoroughly audited, secure yet permissive whitelist, it will also make sure your documents are standards compliant When you put the data into the database use prepared statements or carefully escape the data. |
|||
|
|
|
There are at least two things to consider :
This can be done by escaping your string data, before injecting it into your insert query, with functions such as Also, you might be interested by Prepared Statements ; see
This can be done using a tool such as HTMLPurifier, to filter out all bad/non-accepted tags and attributes, and only keep the subset you whish to allow.
HTMLPurifier will transform / purify it to :
Note that :
|
|||||||
|