thanks for your reply. I have this code and I have re-authorised in this way: I have set in IIS mmc in the properties-> security -> authentication for anonymous to the administrator (for testing purpose)
#!perl
use CGI qw /:standard -nph/;
$|++;
$POST_MAX=100;
$DISABLE_UPLOAD=1;
print header();
print start_html(-title=>'*modifica',-bgcolor=>"#000099",-text=>"#FF99
+33");
print start_form(-method=>'POST',-action=>url(-relative=>1),-name=>'fo
+rm1'); ######## oOOOo ####
print 'insert a little number '.url(-relative=>1).br;
print textfield(-name=>'numero',-value=>"");
print submit(-value=>' crea tabelline');
if (defined param('numero')){&tabell()}
##########################################
sub tabell{ ############ "#000000"
$x=param('numero');
for $uno(1..$x)
{
for $due(1..$x)
{$array[$uno].=td($uno*$due)}
}
print table({-title=>'oOOOo',-bgcolor=>"#000000",-border=>1,-border
+color=>"red",-width=>"80%", -cellspacing=>"0", -cellpadding=>"0"},
Tr({-align=>'CENTER'},[@array]));
}
##########################################
print end_html();
..and it still does'nt want to run giving a 403 error (no error on the server).
Lor*
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.