# !/usr/local/bin/perl
#
require 'www_lib.pl';
###################################################
$number_field="number";
$count_field="count";
%FIELD_DATA=&GET_FIELDS();
###################################################
sub main
{
local (@fields,$n_fields);
local ($num, $count, $i, $result);
@fields = keys %FIELD_DATA;
$n_fields = @fields;
#---------------------------------------------------------------
# use particular button names to decide action
#---------------------------------------------------------------
print "Content-type: text/plain\n\n";
if ( $n_fields == 0 )
{
print "No fields detected - this does not have a forms interface\n";
}
elsif ( $FIELD_DATA{$number_field} && $FIELD_DATA{$count_field})
{
$num = $FIELD_DATA{$number_field};
$count = $FIELD_DATA{$count_field};
if (($num =~ /^[0-9]*$/) && ($count =~ /^[0-9]*$/))
{
for ( $i=1; $i <= $count; $i++)
{
$result = $num * $i;
print "$i times $num = $result\n";
}
}
else
{
print "program only wants integers -\n\tgo back and try again\n";
}
}
else
{
print "incomplete data detected -\n\tyou havent filled in all the fields\n";
}
}
&main;
| file: /Techref/language/java/nosugar/comms/code/timestable.pl, 1KB, , updated: 1996/8/30 11:13, local time: 2012/5/25 08:23,
38.107.179.234:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/language/java/nosugar/comms/code/timestable.pl"> language java nosugar comms code timestable</A> |
| Did you find what you needed? |
|
|
|
Ubicom SX18 thru SX52, PIC 16c5X compatibile, 50 to 75 MIPS microcontrollers! Now US customers can buy the Excellent SXDev from SXList.com for $150 + $15 import fee + s&h (~ $180 total+tax in CA) |
.