hi everyone
could everyone tell me how can i invoke value from getopt('u') to getopt('a')?
for example
[CODE=perl]
getopt('u);
if (opt_u)
{
print"enter something:\n";
$input=<STDIN>;
}
getopt('a');
if(opt_a)
{
#here, how can i use the value $input from getopt('u')
}[/CODE]
thank you for any helping
could everyone tell me how can i invoke value from getopt('u') to getopt('a')?
for example
[CODE=perl]
getopt('u);
if (opt_u)
{
print"enter something:\n";
$input=<STDIN>;
}
getopt('a');
if(opt_a)
{
#here, how can i use the value $input from getopt('u')
}[/CODE]
thank you for any helping
Comment