May 21, 2002 #1 PasPy Programmer May 16, 2002 11 CA how to add a $variable in a @table @did = (1,2,3); $variable = 4; #the code to have @did = (1,2,3,4) ??? Thank to post
how to add a $variable in a @table @did = (1,2,3); $variable = 4; #the code to have @did = (1,2,3,4) ??? Thank to post
May 21, 2002 #2 Rieekan Programmer Apr 2, 2001 737 US @table = (1,2,3); $variable = 4; push @table, $variable; - Rieekan Upvote 0 Downvote