in reply to post url with 2 input

If you are using LWP::UserAgent read the documentation for the post() method, otherwise please take the time to read and understand How do I post a question effectively? and ask better questions.

Replies are listed 'Best First'.
Re^2: post url with 2 input
by bigup401 (Pilgrim) on Jun 23, 2017 at 09:53 UTC

    lets say

    $input1 = $cgi->param() $input2 = $cgi->param()

    and i want to make url post

    post => http://link.com/?num=either1 $input or $input2

      I'd probably start by suggesting that you write using Mojolicious::Lite rather than CGI in future, since it makes all this stuff easier with the Mojo modules. Regardless my previous answer suggests looking at the docs for LWP::UserAgent, the post() method which provides a working examples for exactly what you want to do. If you want to use a tool, read and understand the manual.