Yes. The MySQLi integration includes built-in Cross Site Scripting protection which will encode html and scripts so it won't be displayed. You can manually disable it in the code by changing references from:
$Recordset->getColumnVal("column")
to:
$Recordset->getColumnVal("column",false)
Adding the "false" argument to the end will tell it you don't want Cross Site Scripting protection and will allow html to be displayed from the recordset directly.