a form like this:
<form action='1.php' method='post'>
u:<input name='u' type='text'/><br />
p:<input name='p' type='password'/><br />
<input value='submit' type='submit'/>
</form>
and how can I automatically get form data using perl6? lkie this:
my $form = xxx($the_form_url)
and the result will be as follows:
$form.Str
are there modules for printing in perl6? you are welcome..
source
share