Maybe someone can help me figuring out on how to insert a html img tag into my database table. I've done tons of research but nothing is working.
For example:
My sql query below the "content" column in my table I want to be able to place a <img src=''>
html tag for the value.
$sql = "INSERT INTO custom_slideshow (username, slideshow_name, name, content, cssanimate) VALUES ('admin', 'sample', 'a', 'HTML_CODE_HERE', 'fade')";
I'm obviously getting a SQL syntax error though. Is something like this possible?