Trouble with image link codes

Discussion in 'PHP' started by procrastinator, Mar 23, 2007.

  1. #1
    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">
    &lt;a href=&quot;<? echo$_CONFIG['site_url'] ?>gallery.php?entry=<? echo$_GET[entry] ?>&quot;&gt;&lt;img src=&quot;<? echo$_CONFIG['site_url'] ?>images/thumbs/<? echo basename($_GET[entry]) ?>&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;</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):
     
    procrastinator, Mar 23, 2007 IP
  2. Ozz

    Ozz Peon

    Messages:
    112
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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] ?>][​IMG]
    </textarea>
    [/code]
    Code (markup):
     
    Ozz, Mar 23, 2007 IP