[llvm-commits] CVS: llvm-www/devmtg/2009-10/index.php
Tanya Lattner
tonic at nondot.org
Fri Sep 25 13:30:59 PDT 2009
Changes in directory llvm-www/devmtg/2009-10:
index.php updated: 1.34 -> 1.35
---
Log message:
Remove commented out code.
---
Diffs of the changes: (+0 -14)
index.php | 13 -------------
1 files changed, 13 deletions(-)
Index: llvm-www/devmtg/2009-10/index.php
diff -u llvm-www/devmtg/2009-10/index.php:1.34 llvm-www/devmtg/2009-10/index.php:1.35
--- llvm-www/devmtg/2009-10/index.php:1.34 Fri Sep 25 15:27:53 2009
+++ llvm-www/devmtg/2009-10/index.php Fri Sep 25 15:30:43 2009
@@ -68,28 +68,14 @@
<div class="www_text">
<p>This table lists all attendees who have registered to attend this year's conference.</p>
<p>The list of attendees is offline for now.</p>
-<!--
- <table class="www">
- <tr><th>Name</th><th>Organization</th><th>Registered for Dinner</th></tr>
<?
$sql = "SELECT lastName, firstName, organization, fridayDinner from attendees ORDER BY lastName, firstName";
$results = mysql_query($sql);
$count = 0;
while($row = mysql_fetch_array($results)) {
- print '<tr><td>';
- print $row['firstName'];
- print ' ';
- print $row['lastName'];
- print '</td><td>';
- print $row['organization'];
- print '</td><td>';
- print $row['fridayDinner'];
- print '</td></tr>';
$count++;
}
?>
-</table>
--->
<p><b>Total Confirmed: <?php print $count; ?></b></p>
<!-- <p>If your name is misspelled, or organization affiliation isn't correct, please <a href="mailto:llvm-devmtg-admin at nondot.org">email us</a>, and we'll correct it. -->
</div>
More information about the llvm-commits
mailing list