The following is the error log we received, can anyone tell in details what could be the problem?
Nov 15 13:03:20 machine1 sshd(pam_unix)[6698]: session closed for user sasuser
Nov 15 13:03:24 machine1 sshd(pam_unix)[6782]: session opened for user sasuser by (uid=701)
Nov 15 13:03:30...
How can I passed parameter around? For example:
&db_select(qq[select * from apple where color='\$mycolor'])
sub db_select{
my $para1=shift;
my $mycolor="red";
...
print $para1;
}
is it a way that the "red" ($mycolor) will be passed into $para1 as "red" instead of the $mycolor??
Also, if I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.