Is it fine to insert html data to mysql manually like this -
Code: Select all
insert into test (x)
values("<ul><li>abcdefghijikmno.....</li><ul>")Code: Select all
$query = select x from test where uid = '1'
$output = mysql_query($output, $db) or die(mysql_error());Any ideas ?