How to insert in mysql from text area with iframe tag values

how to insert in mysql from text area with iframe tag values

You can get values from textarea:

$text=$_POST[‘iframe’];

Then you can insert it into table by:

addslashes($text);