OK i have this chunk of code....
###########
sub memberaddrec {
&grab;
&admincheck("$INPUT{'pass'}");
if ($IsAdmin ne "yes") {
&login;
}
$DulNa = $INPUT{'Name'};
$DulNa =~ tr/[A-Z]/[a-z]/;
$DulNa =~ s/[^w_-]//g;
open(RECM,">>data/member.data");
print RECM "$DulNa=$INPUT{'Name'}=$INPUT{'Email'}=$INPUT{'Status'}=$INPUT{'ICQ'}=$INPUT{'AIM'}=$INPUT{'Y'}=$INPUT{'Date'}=$INPUT{'Power'}=$INPUT{'Ghosted'}n";
close(RECM);
if ($INPUT{'adda'} eq "yes") {
&memberadd;
} else {
&Forward("who.cgi", "New member has been added.","Go Back To Control Center", "$INPUT{'pass'}");
}
}
###########
but it's putting it all on the same line, right after the existing one, how do i make it so it adds another line?
Thanks in advanced