Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

redmist's scratchpad

by redmist (Deacon)
on Jun 02, 2004 at 02:37 UTC ( [id://359062]=scratchpad: print w/replies, xml ) Need Help??

#!/usr/bin/perl -w use strict; use lib '/var/www/www.tornpants.com/csa/MLDBM-2.00/lib'; use MLDBM; use Fcntl; use Data::Dumper; my %db; tie %db, 'MLDBM', 'content.db', O_CREAT|O_RDWR, 0640 or die; # do things my $tmp = $db{username}; print "Enter default username: "; my $username = <STDIN>; chomp $username; $tmp->[0] = $username; $db{username} = $tmp; print "\nEnter default password: "; $tmp = $db{password}; my $pw = <STDIN>; chomp $pw; $tmp->[0] = $pw; $db{password} = $tmp; print "\nYour username/password is: "; print $db{"username"}; untie %db or die "Can\'t untie database.\n";
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-03-29 06:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found