Snowman11 has asked for the wisdom of the Perl Monks concerning the following question:
Trying to make it so when the user pushes the number for the menu it will bring you to change the value of the variable but i can only get the first option to work and the others will not work at all :/######################### #Create the Menu Fuction# ######################### sub menu{ system "cls"; print "You have entered these Values for each of these fields."; print "If you wish to Fix any of the information now. Select Number to + Change:\n"; print "\t1. First Name: $fname\n"; print "\t2. Last name: $lname\n"; print "\t3. The School you work at: $school\n"; print "\t4. Your phone: $phone #\n"; print "\t5. Position: $position\n"; print "\t6. Role: $role\n"; print "\t7. Unique Password: $pass\n"; print "\t8. Done\n"; print "Type a number to Choose to fix: "; #----------------------If user Picks 1-------------------------------- +---# if(<STDIN>== int 1) { system "cls"; $fname = ""; while ($fname eq "") { printf "\n\nPlease Enter your First Name: "; $fname = <STDIN>; chomp($fname); &menu; }#end of while loop }#end of if(); if(<STDIN>== int 2) { system "cls"; $lname = ""; while ($lname eq "") { printf "\n\nPlease Enter your Last Name: "; $lname = <STDIN>; chomp($lname); &menu; }#end of while loop }#end of if(); }#end of sub menu menu;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Menu Troubles..
by samtregar (Abbot) on Jun 15, 2005 at 21:24 UTC | |
by Snowman11 (Novice) on Jun 15, 2005 at 21:38 UTC | |
|
Re: Menu Troubles..
by ktross (Deacon) on Jun 15, 2005 at 21:32 UTC | |
by Snowman11 (Novice) on Jun 15, 2005 at 21:56 UTC | |
by ktross (Deacon) on Jun 15, 2005 at 22:11 UTC | |
|
Re: Menu Troubles..
by nedals (Deacon) on Jun 15, 2005 at 22:55 UTC | |
by Tanktalus (Canon) on Jun 15, 2005 at 23:12 UTC | |
by Snowman11 (Novice) on Jun 24, 2005 at 16:23 UTC | |
by Tanktalus (Canon) on Jun 24, 2005 at 16:38 UTC | |
by Snowman11 (Novice) on Jun 24, 2005 at 16:49 UTC |