Help for this page

Select Code to Download


  1. or download this
      <tr align="center" bgcolor="#eeeeee">
        <td bgcolor="#cccccc"><b>Monday</b> </td>
    ...
        <td width="6%"><input type="checkbox" name="Monday" value="8p9p"  
    +/> </td>
        <td width="6%"><input type="checkbox" name="Monday" value="9p10p" 
    +/> </td>
      </tr>
    
  2. or download this
        # Extract and display a summary of information from the form.
        my @days = qw(Monday Tuesday Wednesday Thursday Friday Saturday Su
    +nday);
    ...
    
        # Show the total number of hours selected in the summary
        $page .= $request->p() . "Total Hours Selected: $count" . $request
    +->p();