eaglesphan
IS-IT--Management
It's been a long day and I'm drawing a blank. I have a form that has a radio button that when checked will insert this value into a MySQL database:
value="<img src="../../images/content/meac_button.gif">"
The problem obviously is the two sets of quotes. As is, the value only sees <img src= as it stops when it gets to the second quotes. I tried escaping the quotes with a / but that doesn't work either.
Does anyone know of a way to make this work to get the entire tag to be inserted? So far, I'm having to go into the database with phpMyAdmin to change the tag but there has to be a way to get it done from the form.
value="<img src="../../images/content/meac_button.gif">"
The problem obviously is the two sets of quotes. As is, the value only sees <img src= as it stops when it gets to the second quotes. I tried escaping the quotes with a / but that doesn't work either.
Does anyone know of a way to make this work to get the entire tag to be inserted? So far, I'm having to go into the database with phpMyAdmin to change the tag but there has to be a way to get it done from the form.