forked from science-ation/science-ation
11 lines
285 B
PHP
11 lines
285 B
PHP
<?
|
|
$campaign_types=array("Mail","Email","Phone","Personal Visit","Event","Other");
|
|
|
|
function getGoal($goal) {
|
|
global $config;
|
|
$q=mysql_query("SELECT * FROM fundraising_goals WHERE goal='$goal' AND fiscalyear='{$config['FISCALYEAR']}' LIMIT 1");
|
|
return mysql_fetch_object($q);
|
|
}
|
|
|
|
?>
|