//regdata.php -- data functions
// do not allow caching
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');
include('var.php');
// ##################################################################################################################
// ##################################################################################################################
function getinfo($info, $input) {
global $table;
// retrieve data queries
$sql = array();
$sql['basicinfo'] = 'SELECT FName, MName, LName, Email, Addr1, Addr2, Addr3, City, State, PostalCode, Country, Title, Affiliation, Telephone, TravelSupport, Directory, Sex, Ethnicity, Status, HomeEmployer, Employment FROM ' . $table;
$sql['travel'] = 'SELECT Addr1, Addr2, Addr3, City, State, PostalCode, Country, HomeAddr1, HomeAddr2, HomeAddr3, HomeCity, HomeState, HomePostalCode, HomeCountry, VisaClassification, Status, TravelTerms FROM ' . $table;
$sql['accom'] = 'SELECT Hotel, Roommate, AccomSex, Status, AFlightTime, DFlightTime, AFlightNo, DFlightNo, AFlightAirline, DFlightAirline, SmokingPref FROM ' . $table;
$sql['presentation'] = 'SELECT Email, PresentationTitle, AbstractFlag, FileName FROM ' . $table;
$sql['rf'] = 'SELECT RegFeeTerms FROM ' . $table;
$sql['confirm'] = 'SELECT FName, MName, LName, Email, Addr1, Addr2, Addr3, City, State, PostalCode, Country, Title, Affiliation, Telephone, TravelSupport, Directory, Sex, Ethnicity, HomeAddr1, HomeAddr2, HomeAddr3, HomeCity, HomeState, HomePostalCode, HomeCountry, HomeEmployer, Employment, VisaClassification, Status, Hotel, Roommate, AccomSex, Status, PresentationTitle, AFlightAirline, DFlightAirline, AFlightNo, DFlightNo, AFlightTime, DFlightTime, SmokingPref FROM ' . $table;
// if undefined
if(!$sql[$info]) {
return false;
}
else {
$query = $sql[$info];
$query .= " WHERE UID = $input";
} // end else
if(!$query = mysql_query($query)) {
return false;
}
if(!$data = mysql_fetch_array($query)) {
return false;
}
else {
return $data;
}
} // end function getreginfo
// ##################################################################################################################
// ##################################################################################################################
// ##################################################################################################################
function getform($form, $data, $flag) {
global $table;
$text = '';
// update info based on form (which is determined by $form)
switch($form) {
// ###### basic
case 'basicinfo':
$text .= '
';
break;
// ###### travel
case 'travel':
$text .= '
Travel Support
';
if($data['Status'] != 'speaker') {
$text .= '
If you receive travel support, you will be required to provide the following information. In an effort to expedite processing of potential reimbursements, we will collect this information from you now. Should you not receive travel support, this information will be purged from our database.
';
}
else {
$text .= '
Please read below for information about travel support.
To better assist you with your transportation arrangements and your stay during the workshop, we would like for you to fill out the following information. For information regarding reimbursements, please see travel support page.
';
break;
// ###### presentation
case 'presentation':
$text .= '
Presentation Information
Title of Presentation (maximum length of 255 characters, including spaces)
Special Characters? If your presentation title has special characters that you cannot enter in your browser, indicate so in the field above and we will use the title that you provide in your abstract. To upload your abstract, see below.
Abstract [due by April 3, 2006]
Abstract Upload Instructions
To upload your abstract for inclusion in the booklet of workshop proceedings, use the form below. The maximum file size is 1 MB (1048576 bytes).
If you uploaded the incorrect file or wish to upload a revised version, upload the new file, and the old file will automatically be replaced with the new file.
Abstract Length: the length of your abstract should be about 1740 to 2300 characters with spaces.
Please click the \'Upload File\' button only once. File uploading may take several minutes depending on network conditions.
';
// if they have uploaded a file, display a note
if($data['AbstractFlag'] == 1) {
$text .= '
NOTE You have already uploaded an abstract. If you upload another file here, your old file will be deleted and replaced with the new one. Please note that this action cannot be undone.
The following schedule and fees* apply to all participants of the workshop. The registration fee covers participation in all seminars, discussions, and poster sessions, computer access while at Indiana University, and admission to the Biocomplexity 7 Banquet on Tuesday, May 10, 2005 at 6:00 PM.
If you do not have a US bank account, please contact bioc@indiana.edu to discuss fee payment.
We cannot accept payments by credit card. We apologize for any inconvenience that this may cause.
Make a check or money order payable to:
Indiana University
Send payments to:
The Biocomplexity Institute
727 East Third Street
Swain West 157
Indiana University
Bloomington, IN 47405
Registration Fees*
Due to network-related problems, we have extended the early registration deadline through March 25th.
Graduate Student
Postdoc
Jr Faculty
Sr Faculty/
Industry
Early Registration [through March 25, 2005]
$20
$50
$75
$100
Priority Registration [March 26 - April 14, 2005]
$50
$75
$100
$125
Late Registration [April 15 - May 1, 2005]
$100
$100
$150
$150
Registration must be submitted and payment must be received:
Early Registration: by March 25, 2005
Priority Registration: by April 14, 2005
Late Registration: by May 1, 2005
*If you have requested travel support, a portion of the registration fee may be returned. Final decisions regarding travel support will be made by April 15, 2005 and are subject to our receipt of external funding.
The registration fee is non-refundable after April 1, 2005.
IMPORTANT NOTICE
To complete your registration, check the information below to verify that it is accurate. If any changes need to be made, click the links to edit the information. If all of the information is correct, submit your registration by clicking the button at the bottom of the page. Your registration is not complete until you do so.