Adding more info

They have: 1,587 posts

Joined: Mar 1999

hello:

how would i add more

Code Sample:|

(at the end of each line) to a database constructed similiar to the one below so i could include more info for each member name?

Code Sample:membername|date|birth|city

thanks in advance

------------------
Get paid to surf, email, and everything else online! 75 hrs a month at 55+ cents an hour! Beats AllAdvantage Easily. CLICK 4 DETAILS

Traffic-Website.com free traffic, affiliate programs, hosting, & domain names.
My Site got hacked, but i'm coming back?

They have: 161 posts

Joined: Dec 1999

I'm not sure your problem is as complicated as you might think... however, I do not like your choice of delimiter (the pipe symbol) as it requires extra work when splitting the database line into parts.

Here's a simple little chunk of code; it assumes the db.txt file looks like so:

Code Sample:

username:age:town:state
username:age:town:state
(etc.)

Code Sample:

use Fcntl qw( LOCK_EX );
open DB, "+<db.txt" or
  die "can't open db.txt: $!";
flock DB, LOCK_EX;
while (<DB> ) {
  $user = (split /:/)[0];
  $_ .= join ":", "", info($user);
  push @db, $_;
}
seek DB, 0, 0;
truncate DB, 0;
print DB while defined($_ = shift @db);
close DB;

The info() function returns a list of data regarding that specific user. The reason there is an extra "" before the list returned by the info() function is so that there is a colon after the current db line, and THEN colons between the data returned be info().

------------------
--
MIDN 4/C PINYAN, NROTCURPI, USNR

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.