help with php codes

Discussion in 'PHP' started by jpinheiro, Aug 7, 2008.

  1. #1
    Ok there is 2 Files: (image.php) (urls.php)
    ===============================


    image.php
    <html>
    <head>
    <title> Image Url Generator </title>
    </head>
    <body>
    <center>
    <br><br>
    <h1> Image URL Generator </h1><br><br>
    
    
    <form action="urls.php" method="post">
    <lablel>Image URL:</label><input name="imgurl" type="text">
    <input name="submit" type="submit" value="Generate HTML CODE" /> 
    </form>
    
    <br><br><br>
    
    </body>
    </html>
    
    PHP:
    URLS.php
    <html>
    <head>
    <title> Image Url Generator </title>
    </head>
    <body>
    <center>
    <br><br>
    <h1> Image URL Generator </h1><br><br>
    
    <?php
    $imgurl = $_GET['imgurl'];
    ?>
    
    <label for="html">html code</label><br />
    <input type="text" id="html" value="&lt;img src=&quot;$imgurl&quot;&gt;" readonly="true" /><br />
    
    </body>
    </html>
    PHP:
    But The Output just shows:

    <img src=""> (the output is in a only textfield)
    Th image url doesnt show in between the " " thats where it is supposed to put it
     
    jpinheiro, Aug 7, 2008 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    
    <input type="text" id="html" value="&lt;img src=&quot;<?php echo htmlspecialchars($imgurl); ?>&quot;&gt;" readonly="true" /><br />
    
    PHP:
    www.php.net/echo
     
    nico_swd, Aug 7, 2008 IP
  3. jpinheiro

    jpinheiro Peon

    Messages:
    1,211
    Likes Received:
    15
    Best Answers:
    1
    Trophy Points:
    0
    #3
    jpinheiro, Aug 7, 2008 IP
  4. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #4
    
    <form action="urls.php" method="get">
    
    HTML:
    You're using $_GET in the second page, so you have to submit the form using GET too...
     
    nico_swd, Aug 7, 2008 IP
  5. jpinheiro

    jpinheiro Peon

    Messages:
    1,211
    Likes Received:
    15
    Best Answers:
    1
    Trophy Points:
    0
    #5
    theok it works :) thank you
     
    jpinheiro, Aug 7, 2008 IP