Click to See Complete Forum and Search --> : URL ReplaceMent


Conor
12-10-2003, 06:09 PM
<img border=0 src=http://media.ign.com/boards/images/icons/mulderandscully.gif width=80 height=80 hspace=8 vspace=8>

http://media.ign.com/boards/images/icons/mulderandscully.gif

see that url in there i want that to be replaced with what the user puts in

<tr><td>Icon URL:</td><td width="60%"> <input type="text" name="icon"/><br></td></tr>

that input

Conor
12-10-2003, 06:38 PM
im guessing instead of the icon being there it would have to be some sort of code.

Kyleva2204
12-10-2003, 07:54 PM
here try this:

<img border=0 src="<? echo $_POST; ?>" width=80 height=80 hspace=8 vspace=8>

have the form post to a php file and put that code where you want the icon. It will then add the url.
[i]Originally posted by RefreshF5
im guessing instead of the icon being there it would have to be some sort of code.

Conor
12-10-2003, 09:46 PM
yup i got it.