Results 1 to 3 of 3

Thread: how to make post request by selecting dropdown box item automatically

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Apr 2005
    Posts
    1,907

    how to make post request by selecting dropdown box item automatically

    Hi all. I got in a page a few checkboxes and a dropdown box. I want send the checkbox values and dropdownbox value make a post request automaticaly when i select an item from dropdownbox. Just like the youtube that allow users to copy videos to diffrent playlists. I be happy if some show me how i can make such a post request without clicking a button.Thanks
    Attached Images Attached Images  
    Last edited by tony007; Oct 20th, 2007 at 06:48 AM.

  2. #2
    Frenzied Member TheBigB's Avatar
    Join Date
    Mar 2006
    Location
    *Stack Trace*
    Posts
    1,511

    Re: how to make post request by selecting dropdown box item automatically

    HTML Code:
    <head>
    <script type="text/javascript">
         function postForm(){
              var jform = document.getElementById('fpost');
              jform.submit();
         }
    </script>
    </head>
    
    <form id="fpost" name="fpost" method="POST" action="SOMEPAGE.php">
    
    <select name="copy_to" onChange="javascript:postForm();">
    </select>
    
    </form>
    Delete it. They just clutter threads anyway.

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Apr 2005
    Posts
    1,907

    Re: how to make post request by selecting dropdown box item automatically

    Thebig . do you have youtube account ? if you do just go there and try to copy some videos from one of your playlist to another. You will see the page reloads and the url never changes!! I want to achive that task . How it collected checkboxes values and drop downbox value inside same php page?

    I want to post checkbox values and drop down box value to the same page not diffrent one. Your above code only post checkbox value to another page and that is not what i want. I already know that !!

Posting Permissions

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



Click Here to Expand Forum to Full Width