Recent content by Toki Wartooth

  1. T

    Problem with printing variables in perl?

    Here is my program: #!/usr/bin/perl use CGI ':standard'; my $number = param('number'); print <<BLOCK_O_TEXT; Content-type: text/html <html> <head> <title>CSET4250 Programming Assignment 1</title> </head> <body> BLOCK_O_TEXT print <<FORMPART <form method="GET"> Number: <input type="text"...
  2. T

    Can someone help me with printing variables from parameters in perl?

    Here's my program: #!/usr/bin/perl use CGI ':standard'; my $number = param('number'); print <<BLOCK_O_TEXT; Content-type: text/html <html> <head> <title>CSET4250 Programming Assignment 1</title> </head> <body> BLOCK_O_TEXT print <<FORMPART <form method="GET"> Number: <input type="text" name...
  3. T

    Simple HTML question.?

    Just learning some html. Currently doing lists. I'm being told to do a list like this. <ol> <li>apple</li> <li>orange </li> </ol> That of course brings up a list like this. 1. apple 2. orange My question is, why do i need to close the <li>? Example. <ol> <li>apple <li>orange </ol> Shows the...
Back
Top