I'm using the following code to insert records for my plugin into the db- i need the tag as some posts need special css
$insert_array = array(
'title'=>$_POST['title'],
'file_size'=>$theFileSize,
'path'=>$upload_dir_alt."/". basename( $_FILES['uploadedfile']['name']),
'created_at'=>date( 'Y-m-d H:i:s'),
);
$wpdb->show_errors();
$result = $wpdb->insert($this->table_name, $insert_array );
is there anythhing i can use to encode the html chars? or scape the tag only?