Why is this an error?


Error during compilation of /home/advanced/rperry/public_html/restoredirect.com/doctors/home/updateprofile.html:
Variable "%ARGS" will not stay shared at /home/advanced/rperry/public_html/restoredirect.com/doctors/home/updateprofile.html line 25.

context: 
... 

21: 
my $user = $dbh->selectrow_hashref( qq{SELECT * FROM users WHERE username="$session{username}"} );
22: 

23: 
# update the users table row
24: 
foreach ( keys %{$user} ) {
25: 
if ( defined $ARGS{$_} )
26: 
{ $user->{$_} = $session{$_}; }
27: 
}
28: 

29: 
foreach ( keys %{$user} ) 

Reply via email to