. */ include("./include/include.php"); if( $setup['SetupWSNumber']==0 ) { // There is no workshops in this event, skip to home header("location: index.php"); exit(); } page_header(); $query = "SELECT `title`, `description`, `leader`, `slot`, `url`, `places` FROM `workshops` ORDER BY `title`"; if( @mysql_num_rows( $res=doquery($query) )>0 ) { echoln("
| Title | "); echoln("Leader(s) | "); echoln("Time slot | "); echoln("Description | "); echoln("||
|---|---|---|---|---|---|
| ".$row['title']." [website] | "); else echoln("".$row['title']." | "); echoln("".$row['leader']." | "); echoln("".$row['slot']." | "); if( $row['places']>0 ) echoln("".nl2br($row['description'])." | "); else echoln("".nl2br($row['description'])." There is no free places left in this workshop. | ");
echoln("