|
|
Conferences
and Workshops
| Dates |
Conference |
Location |
Deadline |
error_reporting(E_ERROR | E_WARNING | E_PARSE);
$host="apollo.ee.columbia.edu";
$username="dvmminfo";
$password="gen4group";
$database="dvmmgeneral";
mysql_connect($host,$username,$password,false,128);
@mysql_select_db($database) or die("Unable to select database");
$sql = "select *,unix_timestamp(date_start) as date_start_unix, unix_timestamp(date_end) as date_end_unix, unix_timestamp(date_deadline) as date_deadline_unix from calls_for_papers where date_end >= NOW() order by date_start asc";
$res = mysql_query($sql);
$j=0;
$numrows = mysql_numrows($res);
while ($j<$numrows){
$id = mysql_result($res,$j,"id");
$date_start = mysql_result($res,$j,"date_start_unix");
$date_end = mysql_result($res,$j,"date_end_unix");
$date_deadline = mysql_result($res,$j,"date_deadline_unix");
$name = mysql_result($res,$j,"name");
$location = mysql_result($res,$j,"location");
$url = mysql_result($res,$j,"url");
if (($date_deadline > time()) || ($date_deadline==0)){
$bgcol = "#cfc";
}
else{
$bgcol = "#fcc";
}
echo "| " . (date('m/d/y',$date_start)) . ' - ' . (date('m/d/y',$date_end)) . " | " . $name . " | " . $location . " | ";
if ($date_deadline != 0){
echo (date('m/d/y',$date_deadline));
}
else{
echo " ";
}
echo " | ";
$j++;
}
mysql_close();
?>
| | = Deadline passed. |
| | = Submission still open. |
Past Conferences
Back
to Top
For problems or questions
regarding this web site contact The
Web Master.
Last updated: June 19, 2003.
|