Results 1 to 1 of 1

Thread: Form input to multiple pages challenge

  1. #1
    Join Date
    Jan 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Form input to multiple pages challenge

    Hi,

    I want a form that will pass input parameters to 3 URL's that have different url config but accepts the common input value (value="<?php echo $input; ?>")

    computers = form value = "<?php echo $input; ?>"

    - url 1
    domain.com/folder1/page-1.php?computers

    - url 2
    domain.com/folder2/page-2.php?offset=0&numresults=15&input=computers&sort=date

    - url 3
    domain.com/folder3/page-3.php?offset=0&numresults=15&input=computers&sort=date


    OK what I want is a form that when submitted will:

    1 - Submmit the content <?php echo $input; ?> to 3 pages page-1.php,page-2.php and page-3.php

    2 - The results of the submit to 3 pages will ideally open in 3 i-frames in the same page the form is on (or you suggest on how the results from the 3 pages can be displayed and/or configuration).

    Note:
    The pages page-1.php,page-2.php and page-3.php can be of the same name in different folders
    OR
    they can be in the same folder with different names.

    Suggestions/Help apreciated.

    Thanks.
    Last edited by meow; 01-04-2008 at 01:04 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •