use DBI

2001-05-17 Thread Todd Marks
I'm trying to get the perl script below to write to my database. It didn't work and the error log showed that it got hung up at line 8 (use DBI). any ideas why? #!/usr/bin/perl -w my $name = 'mel'; my $email = '[E

Re: simple perl script

2001-05-17 Thread Todd Marks
ll it keep dumping the data into new rows, or will the old data be written over? -t > On Thu, May 17, 2001 at 12:58:17PM -0500, Todd Marks spake thusly: > *] #!/usr/bin/perl -w > *] > *] use strict; > *] use CGI qw(:standard); > *] use DBI; > *] > *] # change undef(s

simple perl script

2001-05-17 Thread Todd Marks
hello, just want to start off saying that I am a complete newbie to mysql-sorry. I have a perl script that I am simply trying to dump three variables(name CHAR(30), email(50), and score INT) to a database table that has already been established. having some difficulty and wanted to post t