Subversion Repositories VORC

Rev

Rev 112 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 112 Rev 208
Line 49... Line 49...
49
</head>
49
</head>
50
<body text="#000000" bgcolor="#FFFFFF" link="#0000EE" vlink="#551A8B" alink="#FF0000">
50
<body text="#000000" bgcolor="#FFFFFF" link="#0000EE" vlink="#551A8B" alink="#FF0000">
51
output
51
output
Line 52... Line 52...
52
 
52
 
53
my $gcount = 1; my $tcount = '';
53
my $gcount = 1; my $tcount = '';
54
my $sth = $dbh->prepare("select distinct name, coach, note, location, time from v_class where date = ? order by location, time");
54
my $sth = $dbh->prepare("select distinct name, coach, note, location, time from v_class_new where date = ? order by location, time");
Line 55... Line 55...
55
my $crewhan = $dbh->prepare("select derby_name, real_name from v_class_signup left join official on v_class_signup.RCid = official.RCid where date = ? and location = ? and time = ? order by derby_name");
55
my $crewhan = $dbh->prepare("select derby_name, real_name from v_class_signup_new left join official on v_class_signup_new.RCid = official.RCid where date = ? and location = ? and time = ? order by derby_name");
56
 
56
 
57
 
57