Guillaume Denizot wrote:
> 
> That's my HTML page (without <>):
> 
> html head title Basic /title /head
> body
> form action="/perl/base.pl" method="POST"
> input type="Text" name="saisie" value="" size="15"
> /form /body /html
> 
> How should I do to put input value into variable like $var?

first, you'll need a submit button:

<input type="submit" value="Submit">

before the </form>.

then, you'll need to read 'perldoc CGI'

to put the value into a variable (using CGI):

my $q = new CGI;
my $var = $q->param('saisie');
  • Basic Guillaume Denizot
    • fliptop

Reply via email to