I am running a php codeigniter app, and I need to bypass the html_escape
function to insert embeded html code into the database.
This is an example of what I need to insert into the DB:
<script type='text/javascript' charset='utf-8' scr='https://www.buzzsprout.com/423805.js?container_id=buzzsprout-small-player-423805&player=small'></script>
I've tried
$data['url'] = $this->input->post('podcast_url');
But it keeps inserting [removed][removed]
to the DB. If I use just the link, it works fine.
Is there a way to bypass that?