Auto form filler

Discussion in 'JavaScript' started by Lemon116, Oct 11, 2007.

  1. #1
    Is there anyway so a user can input some data into a form (like "555"), click on "sumbit" and this input automaticlly appears in each other form on the following page ?
    Assuming the following page is another site that is not yours and you cant put any script in it.

    Something like the "Google toolbar auto form filler" - you sumbit your username ones and it appears on any form and website asking for it.


    Good answers will be rep.ped :D
     
    Lemon116, Oct 11, 2007 IP
  2. le_gber

    le_gber Peon

    Messages:
    28
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    you need to use a server side script.

    either use the Post or Get method to pass data from your original page to the second and the corresponding function to retrieve it.

    original page:
    <form method="post" action="your_site_address/secondpage.php">
    <input name="figure" type="text" />
    </form>

    secondpage.php:
    <?php
    if(isset($_POST['figure']){
    echo $_POST['figure'];
    }
    ?>
     
    le_gber, Oct 11, 2007 IP
  3. Lemon116

    Lemon116 Active Member

    Messages:
    1,245
    Likes Received:
    38
    Best Answers:
    0
    Trophy Points:
    90
    #3
    You didnt get it, I cant control the 2nd page
     
    Lemon116, Oct 11, 2007 IP
  4. temp2

    temp2 Well-Known Member

    Messages:
    1,231
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    150
    Digital Goods:
    2
    #4
    You should use a soft to do this, I think AI Robo Form is good
     
    temp2, Oct 16, 2007 IP
  5. temp2

    temp2 Well-Known Member

    Messages:
    1,231
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    150
    Digital Goods:
    2
    #5
    You should use a soft to do this, I think AI Robo Form is good
     
    temp2, Oct 16, 2007 IP
  6. temp2

    temp2 Well-Known Member

    Messages:
    1,231
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    150
    Digital Goods:
    2
    #6
    Because of error browser, my article is ..., can mods delete it? Thank
     
    temp2, Oct 16, 2007 IP