mirror of https://github.com/BOINC/boinc.git
30 lines
581 B
PHP
30 lines
581 B
PHP
<?php
|
|
|
|
// database-related functions.
|
|
// Presentation code (HTML) shouldn't be here
|
|
|
|
// TODO: add support for host, user, password
|
|
|
|
function db_init() {
|
|
$retval = mysql_pconnect();
|
|
if (!$retval) {
|
|
exit();
|
|
}
|
|
|
|
$db_name = parse_config("<db_name>");
|
|
mysql_select_db($db_name);
|
|
}
|
|
|
|
function lookup_user_auth($auth) {
|
|
$result = mysql_query("select * from user where authenticator='$auth'");
|
|
if ($result) {
|
|
$user = mysql_fetch_object($result);
|
|
mysql_free_result($result);
|
|
return $user;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
?>
|