in reply to Re: Creating A mini typing game!
in thread Creating A mini typing game!

I apologise for not writing it more clear, was all bunched up in my head. What I meant was file 1 is where everything happens and file 2 is just a file where it holds the user, password, and stage level. So when I login while running file 1, it gets the information from file 2. And when I save in file 1, it saves any changes in file 2.

Replies are listed 'Best First'.
Re^3: Creating A mini typing game!
by marto (Cardinal) on Feb 25, 2014 at 21:27 UTC

    Sure, keeping your perl code and application data in separate files is common practice. You could even store this data in a database, for example DBD::SQLite.