Ok, I made a table in phpMyAdmin and now I want to add
stuff into it from my perl script, but for some reason
nothing is added.

Code Sample:
#!/usr/bin/perl

print "Content-type: text/html\n\n";
use DBI;
$dbh =
DBI->connect("DBI:mysql:database='homewebewebin';host='localhost'",
"usernametakenout","passwordtakenout", {'RaiseError'
=> 1});
$query = "INSERT INTO browse (username, password)
VALUES ('Kittyf', '5521f') LIMIT 0, 30 ";
$sth = $dbh->prepare($query);
$sth->execute(); 


__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to