Results 1 to 3 of 3

Thread: Submit Button Only Works With Firefox
      
   

  1. #1
    KRAYNEL is offline Private
    Join Date
    Jan 2008
    Posts
    2

    Default Submit Button Only Works With Firefox

    help pleasE....

    Previously my submit button on assesment forms were working in both explorer and firefox, however the data was not being emailed from page 1. So, I created the last form again but this time pasting the script (below) to capture the information from page1 first on the form. I then paste the other items on the form. I rename the form and added the correct action.php file. I also added a print this page button which works in both explorer and firefox. The buttons are on the form.

    Script used:
    <?php
    foreach($_POST as $key=>$value){
    if ($key!="submit"){
    $value=htmlentities(stripslashes(strip_tags($value )));
    echo "\t<input type=\"hidden\" name=\"$key\" value=\"$value\">\n";
    }
    }
    ?>
    However, I create the submit and reset button and they would not work in explorer. These buttons only work in firefox now. Please Help.

    www.ilendingservicesbahamas.com

  2. #2
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Submit Button Only Works With Firefox

    Check to make sure the submit buttons are fully ON the form. If they are half on and half off- delete it and stretch the form own an little and place the submit button well on the form. Save and publish and test.

    Andy
    PHP- is a blast!

  3. #3
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Submit Button Only Works With Firefox

    Having gone to our site- none of the links work so it is impossible to look at your form andhelp. Please fix your links or provide us with the URL to the form page in question.

    Andy
    PHP- is a blast!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49