Hi all:
Here's the problem I'm having:
I have a form which inserts info into mySQL. The data insertion works fine.
Some of the fields require the user to insert HTML code for example:
<img src="images/logo_Merconnet.jpg" >
The problem is in the edit interface, I try to prefill the field responding to image as follow:
<input value="<? echo $i[28];?>" name="Image" type="text" />
(where $i[28] is the value inserted before.)
The field shows <img src=, everything after the first quote get chopped.
Any ideas?
Thanx in advance
Kamy