require "common.php"; global $mysql_resource; /* $mysql_resource = mysql_connect($mysql_server, $mysql_user, $mysql_password) or die(mysql_error()); mysql_select_db($mysql_database) or die(mysql_error()); */ function get_user_id($email) { $query = "Select id from persondetails where `email` = '$email'"; $result = mysql_query($query); // or die(mysql_error()); if($result) { $row = mysql_fetch_array($result); $id = $row['id']; return $id; } return 0; } function get_recordset($table, $personid) { $query = "Select id from $table WHERE person_id = $personid"; $result = mysql_query($query); // or die(mysql_error()); if($result) { $row = mysql_fetch_array($result); $id = $row['id']; return $id; } return 0; } function get_paper($title, $personid) { $query = "Select id from paperdetails WHERE person_id = $personid AND `title` = '$title'"; $result = mysql_query($query); // or die(mysql_error()); if($result) { $row = mysql_fetch_array($result); $id = $row['id']; return $id; } return 0; } ?> include "header.php"; ?>
Thank you for your interest in the ACH Bursary Award.
Each year, a number of bursaries are awarded to graduate students and young scholars who have had conference proposals accepted by the DH Programme Committee. Application is via this webpage, the deadline for receipt of applications is April 1 each year, which decisions announced by the ACH bursary review panel in mid to late April each year. We are pleased to be able to offer this funding for attending the Digital Humanities conference, as we consider support of graduate scholarship to be very important to our community. However, as our funding is limited, we an only offer a few places to graduate students. We would ask that all applicants bear this in mind, and to please ensure that funding is not available from any other sources before applying!
Please note that this form will not be active until conference submissions have been reviewed, and acceptances sent out.
* denotes required fields.
include "footer.php"; ?>