Hi,
This segment of my script:
The output on my web page is:
What its supposed to do is append to the file, all the variables listed, seperated by a ":"
Thanks for any help
This segment of my script:
Code:
open($file_var, ">>../login.txt") or die "$!\n";
printf ($file_var, "%s:%s:%s:%s:%s\n",new_username, new_password, new_group, new_shell, new_superuser);
close($file_var) or die "$!\n";
The output on my web page is:
Code:
GLOB(0x810c054)
Thanks for any help