the full image codes dont appear in the image box they appear imcompletely like this <a href="gallery.php?entry=images/foomd2qldzya5ktkdzmm.jpg"><img src="images/thumbs/foomd2qldzya5ktkdzmm.jpg" border="0" alt="" /></a> Code (markup): example here my guess is there is somewhere going wrong in here ..the gallery1.php file <form name="HTML"> <div align="left"> <input onclick="copyit('HTML.select1')" type="button" value="HTML Thumb:" name="cpy"> <br> <textarea name="select1" cols="55"> <a href="<? echo$_CONFIG['site_url'] ?>gallery.php?entry=<? echo$_GET[entry] ?>"><img src="<? echo$_CONFIG['site_url'] ?>images/thumbs/<? echo basename($_GET[entry]) ?>" border="0" alt="" /></a></textarea> </textarea> </div> </form> <p> <form name="BBC"> <div align="left"> <input onclick="copyit('BBC.select2')" type="button" value="Forum Thumb:" name="cpy"> <br> <textarea name="select2" cols="55"> [url=<? echo$_CONFIG['site_url'] ?>gallery.php?entry=<? echo$_GET[entry] ?>][img]<? echo$_CONFIG['site_url'] ?>images/thumbs/<? echo basename($_GET[entry]) ?>[/img][/url] </textarea> </div> </form> <p> <form name="Direct"> <div align="left"> <input onclick="copyit('Direct.select3')" type="button" value="Direct Link:" name="cpy"> <br> <textarea name="select3" cols="55"> <? echo$_CONFIG['site_url'] ?>gallery.php?entry=<? echo$_GET[entry] ?> </textarea> </div> </form> Code (markup):
You must add a space between echo and the text you want to echo: <textarea name="select2" cols="55"> ?>gallery.php?entry=<? echo$_GET[entry] ?>] </textarea> [/code] Code (markup):