The version you have posted in your scratchpad has a few problems with it:

2 compile errors:
First, sub user does not have a closing brace.
Second, your open statement in sub recordswrite does not have a comma:
you have:
open (PASSWD "+</.stickum.txt");
you should have:
open (PASSWD, "+</.stickum.txt");

furthermore, the mode in which you are opening the file will not work unless the file already exists. The mode you are using will NOT create a file if it does not exist.
you have:
"+</.stickum.txt"
you might want to try
"+>>/.stickum.txt"
That will open the file if it exists (without clobbering it) or create it if it doesn't exist. That way you can write to it.

finally, in recordswrite you are asking for input, but you are not getting it.
you have:
print "What is the new passord?\n"; feistal($password);
you should have:
print "What is the new passord?\n"; $password = <STDIN>; feistal($password);
Finally, a way to exit gracefully: rewrite sub user
instead of:
sub user{ print "Account name:\n"; while (<>){ $username=$_; chomp $username; &query; } } #corrected comile error
try this:
sub user{ print "Account name: "; $username = <STDIN>; while ($username == ""){ print "Account name: "; $username = <STDIN>; } &query }

hope this helps,
davidj

In reply to Re: Gracefull completion.. by davidj
in thread Gracefull completion.. by dReKurCe

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.