1. What is the difference between Line #1 and Line #2? 2. Why is the Line #2 declaration incorrect?
use strict;
my %option;
$option {'q'} = new CGI;#Line 1---------------------
$option{'Mon'} = 'Monday';#Line 2 ---------------------
$option->{'Tue'} = 'Tuesday';print $option{'q'} -> header(),
$option{'q'} -> start_html();print $option{'q'} -> end_html;
#thanks-----------
_________________________________________________________________ Get Hotmail on your mobile phone http://www.msn.co.uk/mobile
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
