The ProgrammersTalk Community
Forum Register Search Today's Posts Mark Forums Read
Register

Go Back   The ProgrammersTalk Community > General Programming > Perl


Welcome to the The ProgrammersTalk Community forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Tags:

Closed Thread
 
LinkBack Thread Tools    Display Modes   
  #1 (permalink)  
Old 06-10-2007, 05:27 PM
ny2neyme
Posts: n/a
[SOLVED] Perl web programming newbie?

I need to create a short script that will take the user input of square footage and, based on coverage of 500 sq feet per unit, tell the user how many units they need...this is a homework assignment.

This is coverage.pl:

#!/usr/local/bin/perl

print "HTTP/1.0 200 OK\n";
print "Content-type: text/html\n\n";

##################################
#This will give the user the
#number of detectors they would
#need to have full coverage
##################################

$sqft=$FORM{sqft};

$answer= $sqft / 500;

print << ENDHTML;
<HTML>
<HEAD>
<TITLE>How many detectors will you need?</TITLE>
</HEAD>
<BODY>
<form method="post" action="coverage.pl">
How many square feet do you wish to cover?
<input type="text" name="sqft" size="18">
<input type="submit" name="send" value="How Many I Need">
<br>
You will need $answer detectors.
</form>

</BODY>
</HTML>

ENDHTML

I want the page to post back to itself and display the number of detectors needed.

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Closed Thread


Thread Tools
Display Modes

   Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 04:12 PM. Powered by vBulletin
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO © 2007 ProgrammersTalk Sedo - Buy and Sell Domain Names and Websites project info: programmerstalk.net Statistics for project programmerstalk.net etracker® web controlling instead of log file analysis


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50