summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>1999-04-22 05:58:06 +0000
committerivan <ivan>1999-04-22 05:58:06 +0000
commitcab57b5d930ba2b9d2308f155edeac5fdeef0021 (patch)
tree385bae2284ff28735f6b87dd75ba08ca5941cf2e
parent582478ebeca009066b0445dca96d56c10d6a2f6e (diff)
*** empty log message ***
-rwxr-xr-xcgi/persons.cgi6
-rwxr-xr-xcgi/sets.cgi14
2 files changed, 10 insertions, 10 deletions
diff --git a/cgi/persons.cgi b/cgi/persons.cgi
index 0a84508..d011913 100755
--- a/cgi/persons.cgi
+++ b/cgi/persons.cgi
@@ -1,5 +1,5 @@
#!/usr/bin/perl -Tw
-# $Id: persons.cgi,v 1.6 1999-04-22 05:54:53 ivan Exp $
+# $Id: persons.cgi,v 1.7 1999-04-22 05:58:06 ivan Exp $
# Copyright (c) 1999 Ivan Kohler. All rights reserved.
# This program is free software; you can redistribute it and/or modify it under
# the same terms as perl itself
@@ -27,7 +27,7 @@ $dbh = DBI->connect( $data_source, $user, $password )
unless ( $cgi->param('magic') ) { #first time through
- my $sth = $dbh->prepare( "SELECT * FROM PERSONS" )
+ my $sth = $dbh->prepare( "SELECT * FROM $table" )
or die $dbh->errstr;
my $rv = $sth->execute;
die $sth->errstr unless $rv;
@@ -85,7 +85,7 @@ unless ( $cgi->param('magic') ) { #first time through
$cgi->param( $field, $1);
}
}
- my $statement = 'INSERT INTO PERSONS ( '.
+ my $statement = "INSERT INTO $table ( ".
join(', ', @fields ).
' ) VALUES ( '.
join( ', ', map { $dbh->quote($cgi->param($_)) } @fields ).
diff --git a/cgi/sets.cgi b/cgi/sets.cgi
index b4ef999..9bab6a3 100755
--- a/cgi/sets.cgi
+++ b/cgi/sets.cgi
@@ -1,5 +1,5 @@
#!/usr/bin/perl -Tw
-# $Id: sets.cgi,v 1.2 1999-04-22 05:54:53 ivan Exp $
+# $Id: sets.cgi,v 1.3 1999-04-22 05:58:06 ivan Exp $
# Copyright (c) 1999 Ivan Kohler. All rights reserved.
# This program is free software; you can redistribute it and/or modify it under
# the same terms as perl itself
@@ -33,8 +33,8 @@ unless ( $cgi->param('magic') ) { #first time through
die $sth->errstr unless $rv;
print $cgi->header( '-expires' => 'now' ),
- $cgi->start_html('Person listing'),
- $cgi->h1('Person listing'),
+ $cgi->start_html('Set listing'),
+ $cgi->h1('Set listing'),
;
unless ( $sth eq '0E0' ) {
@@ -59,15 +59,15 @@ unless ( $cgi->param('magic') ) { #first time through
}
$cgi->param('magic', 'new_form');
- print '<P><A HREF="', $cgi->self_url, '">Add new person</A>';
+ print '<P><A HREF="', $cgi->self_url, '">Add new set</A>';
print $cgi->end_html;
exit;
} elsif ( $cgi->param('magic') eq 'new_form' ) {
- $cgi->param('PERSON_ID', 0);
+ $cgi->param('SET_ID', 0);
$cgi->param('magic', 'process_form');
- &print_form( $cgi, "Add person" );
+ &print_form( $cgi, "Add set" );
exit;
} elsif ( $cgi->param('magic') eq 'process_form' ) {
@@ -78,7 +78,7 @@ unless ( $cgi->param('magic') ) { #first time through
$cgi->param( $field, $1);
}
}
- my $statement = 'INSERT INTO PERSONS ( '.
+ my $statement = "INSERT INTO $table ( ".
join(', ', @fields ).
' ) VALUES ( '.
join( ', ', map { $dbh->quote($cgi->param($_)) } @fields ).