include('header.php.inc'); include_once('reg_fields.php.inc'); $empty_reg = true; foreach ($fields as $f) { if (isset($_GET[$f])) { $$f = $_GET[$f]; $empty_reg = false; } else { $$f = ''; } } $status = array(); foreach ($fields as $f) $status[$f] = 'ok'; if ($empty_reg == false) { // Check that required fields are non-empty if ($name == '') $status['name'] = 'nok'; if ($surname == '') $status['surname'] = 'nok'; if ($inst == '') $status['inst'] = 'nok'; if ($address == '') $status['address'] = 'nok'; // Check e-mail address if (!isValidEmail($email)) $status['email'] = 'nok'; // Check whether poster is accepted or declined if (!in_array($poster, array("Yes", "No"))) { $status['poster'] = 'nok'; $poster = 'No'; } } else { $poster = 'No'; } ?>
if ($reg_disabled) { ?> } ?>Participants who are not invited can register to the workshop. Deadline for registration is echo $reg_close_date; ?>. Please read carefully the conference fee page. After submitting the registration form, we will send you the unique variable symbol needed for paying the fee. if ($reg_disabled) { ?> } ?>
if ($reg_disabled) { ?>Registration was closed on echo $reg_close_date; ?>.
} ?>There will be a poster session organized. The poster size must not exceed format A0 (or 16 pages A4). We offer the possibility of printing your posters in case you are not able to transport them with you. In this case please send your PDF file to npde09@math.cas.cz at latest by December 8, 2009. if ($reg_disabled) { ?> } ?>If you want to present a poster, please do not forget to tick off the appropriate field in the form below. if ($reg_disabled) { ?> } ?>
if ($empty_reg == false) echo "Please fill in the required fields.
"; ?> if (!$reg_disabled) { ?> } ?> include('footer.php.inc'); ?>