fee633e82b
git-svn-id: http://yolanda.mister-muffin.de/svn@44 7eef14d0-6ed0-489d-bf55-20463b2d70db
36 lines
979 B
Perl
36 lines
979 B
Perl
#!/usr/bin/perl
|
|
require "include.pl";
|
|
|
|
#initialize session data
|
|
CGI::Session->name($session_name);
|
|
$query = new CGI;
|
|
$session = new CGI::Session;
|
|
|
|
#if username and password are passed put them into the database
|
|
if($query->param('user') and $query->param('pass'))
|
|
{
|
|
#connect to db
|
|
my $dbh = DBI->connect("DBI:mysql:$database:$host", $dbuser, $dbpass) or die $dbh->errstr;
|
|
|
|
#save POST data in local variables
|
|
my $user = $query->param("user");
|
|
my $pass = $query->param("pass");
|
|
|
|
#do query
|
|
$dbh->do(qq{insert into users (username, password) values ('$user', password('$pass'))}) or die $dbh->errstr;
|
|
|
|
#disconnect db
|
|
$dbh->disconnect() or die $dbh->errstr;
|
|
|
|
#print a little confirmation
|
|
print $session->header();
|
|
print 'done';
|
|
}
|
|
else
|
|
{
|
|
#if not, print register form
|
|
print $session->header();
|
|
print '<page locale="en-US" stylesheet="./style/gnutube.css" username="">'; # josch, sanitize this
|
|
print '<registerform />';
|
|
print '</page>'; # josch, sanitize this
|
|
}
|