Support » Plugins » How to send post value on form action URL

  • I create a wp list table in back-end section and I want to send search, filter, hidden etc all post value of my form on action url like this:

    http://www.mywebsite.com?action=myform&redirect_url=thank-you

    Here is my code:

    <form method="post" action="">
    <input type="hidden" name="redirect_url" value="thank-you"/>
    <input type="text" name="action"/>
    <input type="submit" value="Submit"/>
    </form>

    I can do this task use GET Method but hidden post value show as unicode url like this: %26redirect_url%3Dthank-you in GET Method. I trying so hard solving this problem but i can’t so please any can help me solving this problem. Thanks

  • The topic ‘How to send post value on form action URL’ is closed to new replies.