08-29-2024, 02:32 PM
If you've upgraded to mySQLi and you find that HTML text is displaying the HTML code as well as the text, all you need to do is update the PHP code as in the following example:
Old code:
New code:
Old code:
PHP Code:
<?php echo($recordset->getColumnVal("textcolumn")); ?>
New code:
PHP Code:
<?php echo($recordset->getColumnVal("textcolumn",false)); ?>