[EMAIL PROTECTED] writes:
Yeah well, to open an .htpasswd you just use split..

open (HT, "<.htpasswd") or die;
while (chomp ($line = <HT>)) {
 @flds = split (/:/, $line);

 # do your DBI stuff
}

this is easy!! what's the problem?

i thought it's like DBD::CSV where i can connect to a CSV file and use
SQL.  how about DBD::RAM?  

tnx guys for your answers... they really help me a lot.


Reply via email to