Pass URL From Form To Iframe

Discussion in 'PHP' started by narsticle, Oct 10, 2008.

  1. #1
    Hi all. I stink at PHP and you all rock so heres a question.

    I want to make a 2 page app.

    Page 1: Simple form that you can enter a url into

    Page 2: Takes the URL from the form on page 1 and pops it into an iframe in page 2

    Similar to this site: http://www.thesitekick.com/ (although that is asp)

    Im guessing that somehow the URL on page 1 has to be passed into the URL as a variable and sucked into page 2 between the iframe tags.

    Can anyone show me how to do this? Thanks so much.
     
    narsticle, Oct 10, 2008 IP
  2. mehdi

    mehdi Peon

    Messages:
    258
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Here is the Basic Script i created, you can customize it:

    1st page: index.php
    
    <html>
    <head>
    <title>[B]Your Website Title[/B]</title>
    </head>
    <body>
    
    <div align="center">
    <form action="[B]frame.php[/B]" method="post" target="_blank">
    <b>Enter URL</b>
    <br>
    <input type="text" name="url" size="50" value="http://www.">
    <input type="submit" value="GO!">
    </form>
    </div>
    
    </body>
    </html>
    
    Code (markup):
    2nd Page: frame.php
    
    <?php
    $url=$_POST['url'];
    $yoursite="[B]http://mysite.com/[/B]";
    $yoursitename="[B]My Site[/B]";
    ?>
    <html>
    <head>
    <title><?php echo $url;?> - Your Website Title</title>
    <body>
    Powered by <a href="<?php echo $yoursite;?>"><?php echo $yoursitename;?></a>
    <iframe 
    src ="<?php echo $url;?>"
    width="100%" height="100%">
    </iframe>
    </body>
    </html>
    
    Code (markup):
    Change Bold Text in Above to your needs.

    Thanks.
     
    mehdi, Oct 10, 2008 IP
  3. narsticle

    narsticle Peon

    Messages:
    1,679
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #3
    awesome thanks
     
    narsticle, Oct 10, 2008 IP
  4. mehdi

    mehdi Peon

    Messages:
    258
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #4
    no +rep? :)
     
    mehdi, Oct 10, 2008 IP