Search results

  1. J

    What is the best .DBM file manager module for perl?

    I need to not use a mySQL database, so I need to use a .DBM file. I have no prior knowledge with databases and Perl.
  2. J

    What is the best .DBM file manager module for perl?

    I need to not use a mySQL database, so I need to use a .DBM file. I have no prior knowledge with databases and Perl.
  3. J

    How do you search a file in Perl?

    I need to search a text file for a specific word.
  4. J

    Can anyone tell me why this Perl script won't make a binary file? I'll include the...

    ...script in a detail.? print "Please enter the Username you wish to have: "; while (<STDIN>) { $user = $_; open (FILE, '>' . $user . '.bin'); if (-e FILE) { print "Username has been taken." and exit; } else { print "Please enter the Password you wish to use: "; while (<STDIN>) { $pass = $_...
  5. J

    How do I redirect to another page with Perl?

    I know how to make a link with HTML via Perl, but I can't use a link, I have to have a random URL. Speaking of which, I don't know how to put a random URL in a address bar either. I said I CANNOT use a link.
  6. J

    How do I redirect to another page with Perl?

    I know how to make a link with HTML via Perl, but I can't use a link, I have to have a random URL. Speaking of which, I don't know how to put a random URL in a address bar either.
Back
Top