-
Notifications
You must be signed in to change notification settings - Fork 1
/
posters.php
106 lines (71 loc) · 1.98 KB
/
posters.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
include('inc/db_conn.php');
//===========================
// pull talks
//===========================
$sql_talks = "SELECT ";
$sql_talks .= "talks.id AS talk_id, ";
$sql_talks .= "authors, ";
$sql_talks .= "title, ";
$sql_talks .= "track, ";
$sql_talks .= "type, ";
$sql_talks .= "released, ";
$sql_talks .= "tags ";
$sql_talks .= "FROM talks ";
$sql_talks .= "LEFT JOIN presenters ";
$sql_talks .= "ON presenter_id = presenters.id ";
$sql_talks .= "LEFT JOIN license_types ";
$sql_talks .= "ON license_type_id = license_types.id ";
$sql_talks .= "WHERE talks.conference_id = 2 ";
$sql_talks .= "AND track IN ('Posters') ";
$sql_talks .= "ORDER BY title ASC";
$total_talks = @mysql_query($sql_talks, $connection) or die("Error #". mysql_errno() . ": " . mysql_error());
$last_track = '';
$display_posters .="<ol>
";
do {
if ($row['title'] != '')
{
$display_posters .=" <li> <a href=\"presentation_detail.php?id=" . $row['talk_id'] . "\">" . $row['title'] . "</a>
<ul>
<li>" . $row['authors'] . "</li>
</ul>
</li>";
}
}
while ($row = mysql_fetch_array($total_talks));
$display_posters .="</ol>
";
?>
<!DOCTYPE html>
<html>
<?php $thisPage="Posters"; ?>
<head>
<?php @ require_once ("inc/header.php"); ?>
<link rel="shortcut icon" href="http://conference.scipy.org/scipy2013/favicon.ico" />
</head>
<body>
<div id="container">
<?php include('inc/page_headers.php') ?>
<section id="sidebar">
<?php include("inc/sponsors.php") ?>
</section>
<section id="main-content">
<a name="#top"></a>
<div class="cell, schedule_info">
<div class="icon_date" style="margin: 0 auto;">Jun<br /><span class="icon_date_day">27</span></div>
10:35 AM<br />
11:35 AM
</div>
<h1>Posters</h1>
<p>Listed below are confirmed posters for SciPy2013.</p>
<p>Poster session is scheduled for 10:35 AM - 11:35 AM on June 27th.</p>
<?php echo $display_posters ?>
</section>
<div style="clear: both;"></div>
<footer id="page_footer">
<?php include('inc/page_footer.php') ?>
</footer>
</div>
</body>
</html>