コード例 #1
0
 public function run_my_messages()
 {
     if ($rws = DB::f("select * from messages where `to`=:id or `from`=:id order by dt desc", array("id" => $this->app->getUser("id")))) {
         $rws = $this->load_messages_users($rws);
         return $this->display_my_messages($rws);
     }
     $this->app->setSuccess("<!--[You_have_not_any_messages_yet]-->", 5);
 }
コード例 #2
0
 public function run()
 {
     global $geo_cities, $geo_countries;
     $geo_cities = set_by_id(DB::f("select * from geo_cities"));
     $geo_countries = set_by_id(DB::f("select * from geo_countries"));
     Auth::run();
     if ($user = Auth::getUser()) {
         $this->user = $user;
     }
     $this->parseRequest();
     $old_CID = null;
     $is_called_common = 0;
     while ($this->CID != $old_CID) {
         $old_CID = $this->CID;
         try {
             $channel = ChannelFactory::create($this);
             $channel->run();
             $this->storeData($channel->getData());
             if ($this->CID == $old_CID && !$is_called_common && !$this->is_ajax) {
                 $is_called_common = 1;
                 $this->CID = "common";
             }
         } catch (CHException $e) {
             if ($this->is_ajax) {
                 $this->data["error"] = "[" . $e->getType() . "] " . $e->getMessage();
             } else {
                 $this->setError($e->getMessage(), $e->getType());
             }
         }
     }
     if ($this->is_ajax) {
         $this->buildAjaxOut();
     } else {
         $this->buildOut();
     }
 }
コード例 #3
0
$db = new DB();
$flag = 0;
/*
 * checks all active subscriptions in the database
 * to see if they need to be billed again
 */
require_once 'anet_php_sdk/AuthorizeNet.php';
require_once 'AuthorizeNetMerchantAccount.php';
// gets today's date
$today = date('Y-m-d');
// gets all active records with a next bill date equal to today
$query = "SELECT * FROM " . TBL_COLLEGE_SUBSCRIPTION . " WHERE fldActive=1 AND fldNextBillDate='{$today}'";
$db->query($query);
// loops through all matching records, gets the customer's customer profile ID, the payment profile ID, and bills them for the subscription renewal. If the transaction faisl, the subscription is canceled
while ($db->next_record()) {
    $fldId = $db->f('fldId');
    $fldType = $db->f('fldType');
    $fldCoach = $db->f('fldCoach');
    $fldAmount = $db->f('fldAmount');
    $fldPaymentProfileId = $db->f('fldPaymentProfileId');
    // gets the customer profile Id
    $query = "SELECT fldFirstName,fldLastName," . "fldANetCustomerProfileId,fldEmail FROM " . TBL_COLLEGE_COACH_REGISTER . " WHERE fldId={$fldCoach}";
    $db1->query($query);
    $db1->next_record();
    $fldFirstName = $db1->f('fldFirstName');
    $fldLastName = $db1->f('fldLastName');
    $fldCustomerProfileId = $db1->f('fldANetCustomerProfileId');
    $fldEmail = $db1->f('fldEmail');
    // attempts to charge the user for the subscription
    $transaction = new AuthorizeNetTransaction();
    $transaction->amount = $fldAmount;
コード例 #4
0
$fldTransportation = $_REQUEST['tp_id'];
$tbl_transportation_discount = 'tbl_transportation_discount';
$q = $_REQUEST["q"];
$que = "select * from " . $tbl_transportation_discount . " where Event_id='" . $q . "'";
$db->query($que);
if ($db->num_rows() > 0) {
    ?>
<p>
	<label>Select Transportation:</label>
	<span>
	
	<select name="fldTransportation" id="fldTransportation" onchange="transport_charge(this.value)">
		 <option value="0">I have my own transportation</option>
	<?php 
    while ($db->next_record()) {
        $id = $func->output_fun($db->f('id'));
        $Event_id = $func->output_fun($db->f('Event_id'));
        $Diparture_City = $func->output_fun($db->f('Diparture_City'));
        $Departure_Time = $func->output_fun($db->f('Departure_Time'));
        $Transportation_charge = $func->output_fun($db->f('Transportation_charge'));
        $Diparture_City . " departing at " . $Departure_Time;
        ?>
  		          	         
	     <option value="<?php 
        echo $id;
        ?>
"<?php 
        if ($id == $fldTransportation) {
            ?>
 selected="selected" <?php 
        }
コード例 #5
0
if ($_POST['isSubmit'] == 'save') {
    if ($func->input_fun($_POST['fldOppComments']) == '') {
        $error_msg[] = "Please Fill the Comment Box.";
    } else {
        $fldId = $_REQUEST['athid'];
        $strDataArr = array('fldathleteid' => $fldId, 'fldcoachid' => $_SESSION['Coach_id'], 'fldOppComments' => $func->input_fun($_POST['fldOppComments']));
        $db->insertRec('tbl_Opp_Comments', $strDataArr);
        if (count($error_msg) == 0) {
            ?>
								<div class="thankyoumessage">
									<?php 
            echo "Your comment has been successfully posted.";
            ?>
								</div>
								<?php 
        }
    }
}
?>
								<?php 
if (count($error_msg) > 0) {
    foreach ($error_msg as $key => $value) {
        ?>
								<div class="thankyoumessage">
									<?php 
        echo $value;
        ?>
								</div>
								<?php 
    }
}
コード例 #6
0
include_once "inc/page.inc.php";
include_once "inc/config.inc.php";
//for paging
$func = new COMMONFUNC();
$db = new DB();
$coachflag = 0;
$Athleteflag = 0;
$collegeflag = 0;
if ($_SESSION['mode'] == '') {
    header("Location:index.php");
}
$fldEventId = $_REQUEST['fldEventId'];
$query = "Select * from " . TBL_EVENT . " where fldEventId = '{$fldEventId}' ";
$db->query($query);
$db->next_record();
$fldfldEventId = $db->f('fldEventId');
$fldEventName = $db->f('fldEventName');
$fldSport = $db->f('fldSport');
$fldEventDescription = $func->output_fun($db->f('fldEventDescription'));
$fldEventDescription = str_replace("\n", "<br>", $fldEventDescription);
$fldEventLocation = $db->f('fldEventLocation');
$fldEventStartDate = $db->f('fldEventStartDate');
$fldEventEndDate = $db->f('fldEventEndDate');
$fldHomeTeam = $db->f('fldHomeTeam');
$fldAwayTeam = $db->f('fldAwayTeam');
$fldEventStatus = $db->f('fldEventStatus');
$query_sport = "Select * from " . TBL_SPORTS . " where fldId = '{$fldSport}' ";
$db1->query($query_sport);
$db1->next_record();
$sport_nmae = $db1->f('fldSportsname');
$query_School = "Select * from " . TBL_HS_AAU_TEAM . " where fldId = '{$fldHomeTeam}' ";
コード例 #7
0
 $fldShuttleRun = $rating_func->output_fun($profile_db->f('fldShuttleRun'));
 $fldBenchPressMax = $rating_func->output_fun($profile_db->f('fldBenchPressMax'));
 $fldSquatMax = $rating_func->output_fun($profile_db->f('fldSquatMax'));
 ####### APPROVED_BY_COACH ################
 if ($coachApprove == 0 || $coachApprove == "") {
     // mail to Coach for pending approval request
     //User Selected School
     $schoolid = $fldSchool;
     $sportid = $fldSport;
     $emailarr = array();
     $selquery = 'select first.fldId,first.fldEmail as fldEmail,first.fldName as name,first.fldLastName as lname,first.fldUsername as HSCoachUsername,first.fldPassword as HSCoachPassword from ' . TBL_HS_AAU_COACH . ' first,' . TBL_HS_AAU_COACH_SPORT_POSITION . ' second  where second.fldCoachNameId = first.fldId and second.fldSportId =' . $sportid . ' and first.fldSchool =' . $schoolid;
     $coach_db->query($selquery);
     $coach_db->next_record();
     if ($coach_db->num_rows() > 0) {
         for ($i = 0; $i < $coach_db->num_rows(); $i++) {
             $emailarr[] = $rating_func->output_fun($coach_db->f('fldEmail'));
             $name = $rating_func->output_fun($coach_db->f('name'));
             $lname = $rating_func->output_fun($coach_db->f('lname'));
             #Login Info
             $HSCoachUsername = $rating_func->output_fun($coach_db->f('HSCoachUsername'));
             $HSCoachPassword = $rating_func->output_fun($coach_db->f('HSCoachPassword'));
             $db->next_record();
         }
         foreach ($emailarr as $key => $emailvalue) {
             ######################## EMAIL to HS COACH - Athlete Approval Notification ########################
             #Subject
             $subjectStre = "College Prospect Network - Athlete Pending Approval";
             #Intro
             $bodyStre = "Hi Coach " . ucfirst($name) . '&nbsp;' . ucfirst($lname) . ",<br /><br />";
             #Main Body
             $bodyStre .= "You are receiving this email because " . ucfirst($aname) . "&nbsp;" . ucfirst($anamel) . " has applied to join <a href=http://www.CollegeProspectNetwork.com>www.CollegeProspectNetwork.com.</a> <br />";
コード例 #8
0
<div class="container">

  <div class="innerWraper">

    <div class="middle-bg">

    <div class="cantener">

  <div class="register-main">



<?php 
$query = " Select * from " . TBL_SPORTCALENDER . " where fldID ='" . $_REQUEST['fldId'] . "'";
$db->query($query);
$db->next_record();
?>

 <p><h1>Sports Calendar</h1></p>

                      <div class="registerPage">

<p>

                                	

                                  <!--  <span><img src="<?php 
//echo SITE_URL;
?>
/logo/<?php 
//echo $fldSchoolLogo;
コード例 #9
0
//for common function
include_once "inc/page.inc.php";
session_start();
if ($_SESSION['mode'] == "" or $_SESSION['FRONTEND_USER'] == "") {
    header("Location:index.php");
}
//for paging
$func = new COMMONFUNC();
$db = new DB();
$flag = 0;
$error_msg = '';
$fldUsername = $_SESSION['FRONTEND_USER'];
$query = " Select * from " . TBL_ATHELETE_REGISTER . " where fldUsername = '******' ";
$db->query($query);
$db->next_record();
$Status = $db->f('fldStatus');
$image_name = $db->f('fldImage');
$fldAthleteid = $db->f('fldId');
$fldFirstname = $func->output_fun($db->f('fldFirstname'));
$fldLastname = $func->output_fun($db->f('fldLastname'));
$fldClass = $func->output_fun($db->f('fldClass'));
$fldHeight = $func->output_fun($db->f('fldHeight'));
$fldWeight = $func->output_fun($db->f('fldWeight'));
$fldDescription = $func->output_fun($db->f('fldDescription'));
$fldDescription = str_replace("<br>", "\n", $fldDescription);
$fldEmail = $func->output_fun($db->f('fldEmail'));
$fldUsername = $func->output_fun($db->f('fldUsername'));
$fldSchool = $func->output_fun($db->f('fldSchool'));
$fldSport = $func->output_fun($db->f('fldSport'));
$fldJerseyNumber = $func->output_fun($db->f('fldJerseyNumber'));
$fldPrimaryPosition = $func->output_fun($db->f('fldPrimaryPosition'));
コード例 #10
0
    $i = strrpos($str, ".");
    if (!$i) {
        return "";
    }
    $l = strlen($str) - $i;
    $ext = substr($str, $i + 1, $l);
    return $ext;
}
//Edit Mode
$fldId = $_REQUEST['fldId'];
if ($_GET['mode'] == 'edit' and $fldId != "") {
    $query = " Select * from " . TBL_ATHLETE_VIDEO . " where fldId =" . $fldId;
    $db->query($query);
    $db->next_record();
    if ($db->num_rows() > 0) {
        $fldTitle = $db->f('fldTitle');
        $fldVideo = $db->f('fldVideo');
        $fldStatus = $db->f('fldStatus');
    }
} else {
    $fldTitle = " ";
    $fldVideo = " ";
    $fldStatus = " ";
}
//Submit Form
if ($_POST['isSubmit'] == 'save') {
    //Edit the user info
    $fldTitle = $func->input_fun($_POST['fldTitle']);
    $fldStatus = $func->input_fun($_POST['fldStatus']);
    $video_upload = $_FILES['fldVideo']['name'];
    if ($video_upload) {
コード例 #11
0
  <META NAME="Description" CONTENT="My Account">

<link href="css/style.css" rel="stylesheet" type="text/css" />

<script language="Javascript" src="javascript/functions.js"></script>

</head>

<body>

<?php 
include 'header.php';
?>

    <!--middle panel starts from here -->

<!--content panel starts from here -->

<div class="container">

  <div class="innerWraper">

    <div class="middle-bg">

    <div class="cantener">

  <div class="register-main">



<?php 
コード例 #12
0
}
########################################################
########### FEEDBAK_FROM_OPPOSING_COACH #############
$query_6 = "select * from tbl_opp_comments where (date(fldaddedDate) >= (DATE_SUB(now(), INTERVAL 8 day)) AND date(fldaddedDate)< (now())) GROUP BY fldathleteid,fldcoachid";
$rating_db_6->query($query_6);
$arr_info = array();
$totalPages = $rating_db_6->num_rows();
if ($totalPages > 0) {
    $rating_db_6->next_record();
    for ($k = 0; $k < $totalPages; $k++) {
        $UserID = $rating_db_6->f('fldId');
        $rating_func->setAtheleteRating("WEEKLY", $UserID, "FEEDBAK_FROM_OPPOSING_COACH", true);
        $rating_db_6->next_record();
    }
}
########################################################
########### MOST_PROFILE_VIEW #############
$query_7 = "select * from tbl_athelete_register where fldStatus='Active' ORDER BY fldWeeklycounter DESC";
$rating_db_7->query($query_7);
$arr_info = array();
$totalPages = $rating_db_7->num_rows();
$rating_func->reset_weekly_counter();
if ($totalPages > 0) {
    $rating_db_7->next_record();
    $UserID = $rating_db_7->f('fldId');
    $rating_func->setAtheleteRating("WEEKLY", $UserID, "MOST_PROFILE_VIEW", true);
}
##############################################
######### WEEKLY RATING END ##################
##############################################
die;
コード例 #13
0
    $Id = $_REQUEST['Id'];
    $active_query_details = "update " . TBL_ADDTONETWORK_REQUEST . " set status = 'DEACTIVE' where Id='" . $Id . "'";
    $activemsg = $db->query($active_query_details);
    if (isset($activemsg)) {
        $_REQUEST['msg'] = "Request successfully updated.";
    }
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<title>CPN - College Network Request</title>
		<META NAME="Keywords" CONTENT="My Account">
		<META NAME="Description" CONTENT="My Account">
		<link href="css/style.css" rel="stylesheet" type="text/css" />
		<script language="Javascript" src="javascript/functions.js"></script>
		<script language="JavaScript" type="text/JavaScript">
            function activeRequest(Id) {
                if(confirm("Sure you want to approve this request?")) {
                    document.frmUsers.action = "?mode=active&Id=" + Id;
                    document.frmUsers.submit();
                }
            }
            function dectiveRequest(Id) {
                if(confirm("Sure you want to deny this request? You can approve still approve it later.")) {
                    document.frmUsers.action = "?mode=deactive&Id=" + Id;
                    document.frmUsers.submit();
                }
            }
		</script>
コード例 #14
0
include_once "inc/common_functions.php";
//for common function
include_once "inc/page.inc.php";
include_once "inc/config.inc.php";
$func = new COMMONFUNC();
$db = new DB();
$tbl_transportation_discount = 'tbl_transportation_discount';
$c = $_REQUEST["c"];
$que = "select * from " . $tbl_transportation_discount . " where id='" . $c . "'";
$db->query($que);
if ($db->num_rows() > 0) {
    ?>
	<?php 
    while ($db->next_record()) {
        $Transportation_charge = $func->output_fun($db->f('Transportation_charge'));
    }
    ?>

<p>
<label>Transportation Charge:</label>
<span>
<input type="text" name="Transportation_charge" id="Transportation_charge" value="<?php 
    echo $Transportation_charge;
    ?>
" readonly />
<!-- <span style="color:#444;line-height:18px;margin-left:230px;">
<font style="color:#777;">* We provide Transportation for Event and our charge is $20 <br />from sterling high school.<br></font>
<font style="color:#777;">* Bus leave at 6:15am & back at 8:00 pm<br />* If you want to interesting so selecting above Select Transportation</font>-->   								    
</span>
</p>                                   
コード例 #15
0
    $admin_mail = "*****@*****.**";
    SendHTMLMail1($admin_mail, $subjectStre, $bodyStre, $_POST['fldEmail']);
    //if (isset($t)) {
    //Thanks for sending mail
    header("location:page.php?page_name=contactus&msg=Your email has been sent to the appropriate team to best address your needs, and you should receive a response shortly.");
    //}
}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<title><?php 
if ($flag == 1) {
    echo $db->f('fldPageMetaTitle');
}
?>
</title>
		<META NAME="Keywords" CONTENT="<?php 
if ($flag == 1) {
    echo $db->f('fldPageMetaKeyword');
}
?>
">
		<META NAME="Description" CONTENT="<?php 
if ($flag == 1) {
    echo $db->f('fldPageMetaDescraption');
}
?>
">
コード例 #16
0
include_once "inc/common_functions.php";
//for common function
include_once "inc/page.inc.php";
session_start();
if ($_SESSION['mode'] == "" or $_SESSION['FRONTEND_USER'] == "") {
    header("Location:index.php");
}
//for paging
$func = new COMMONFUNC();
$db = new DB();
$flag = 0;
$query = " Select * from " . TBL_HS_AAU_TEAM . " where fldUserName ='******'FRONTEND_USER'] . "'";
$db->query($query);
$db->next_record();
$School_id = $db->f('fldId');
$fldSchoolname = $db->f('fldSchoolname');
$fldSchoolCity = $db->f('fldCity');
$fldSchoolState = $db->f('fldState');
$fldSchoolZipcode = $db->f('fldZipcode');
$fldSchoolLogo = $db->f('fldLogo');
$school_sport_coach = $func->school_sport_coach($School_id);
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
コード例 #17
0
<?php

include_once "inc/common_functions.php";
//for common function
include_once "inc/page.inc.php";
include_once "inc/config.inc.php";
$func = new COMMONFUNC();
$db = new DB();
$q = $_GET["q"];
$selquery = " Select * from " . TBL_ATHLETE_STATS_CATAGORY . " where (fldParentId ='" . $q . "') and (fldStatus=1)";
$db->query($selquery);
$db->next_record();
for ($field_count = 0; $field_count < $db->num_rows(); $field_count++) {
    $fldName = $db->f('fldName');
    $fldId = $db->f('fldId');
    ?>

 	<p>

                                	<label><?php 
    echo $fldName;
    ?>
 :</label>

                                    <span><input type="text" name="category[]" />

                                    <input type="hidden" name="categoryId[]" value="<?php 
    echo $fldId;
    ?>
">
コード例 #18
0
		<div class="container">
			<div class="innerWraper">
				<div class="middle-bg">
					<div class="cantener">
						<div class="register-main">
							<h1>Messaging</h1>
							<div class="registerPage messaging">
								<?php 
$username = $_SESSION['FRONTEND_USER'];
?>

								<?php 
$query = "SELECT COUNT(*) as count from " . TBL_MAIL . "  WHERE UserTo='{$username}' and status='unread' and visible='ACTIVE'";
$db->query($query);
$db->next_record();
$count = $func->output_fun($db->f('count'));
?>

								<div style="margin-bottom:15px;" class="messagecenter">
									<?php 
if ($count > 0) {
    ?>

									   <a href="Athmessage.php?action=inbox" <?php 
    echo $_REQUEST['action'] == 'inbox' || $_REQUEST['action'] == '' ? 'class="active"' : '';
    ?>
>Inbox&nbsp;(<?php 
    echo $count;
    ?>
)</a>
									<?php 
コード例 #19
0
        /********* Athelete Rate Checking****************/
        require_once "athlete_rating.php";
        /********* Athelete Rate Checking****************/
        break;
    case 'coach':
        //HS Coach ID
        $UserID = $_SESSION['Coach_id'];
        break;
    case 'college':
        //College Coach ID
        $UserID = $_SESSION['College_Coach_id'];
        //Check Subscription Status
        $query = " Select fldSubscribe from " . TBL_COLLEGE_COACH_REGISTER . " where fldId ='" . $UserID . "' ";
        $db->query($query);
        $db->next_record();
        $_SESSION['fldSubscribe'] = $db->f('fldSubscribe');
        break;
}
#### PENDING NETWORK REQUESTS ####
$Pending_request = $func->selectTableOrder(TBL_NETWORK, "fldId", "fldId", "where fldReceiverid='" . $UserID . "' and fldReceiverType='" . $UserType . "' and fldStatus='Pending'");
if (count($Pending_request) > 0) {
    $NetworkReq_Pending = "(<font style='color:red;'>" . count($Pending_request) . " Pending</font>)";
}
#### PENDING NETWORK REQUESTS ####
#### INBOX ####
$inboxinfo = $func->selectTableOrder(TBL_MAIL, "mail_id", "mail_id", "where UserTo='" . $_SESSION['FRONTEND_USER'] . "' and status ='unread'");
$Countinboxinfo = count($inboxinfo);
if ($Countinboxinfo > 0) {
    $Countinboxinfo = "(<font style='color:red;'>" . $Countinboxinfo . " Unread</font>)";
} else {
    $Countinboxinfo = "";
コード例 #20
0
<?php

include_once "inc/common_functions.php";
include_once "inc/page.inc.php";
session_start();
$func = new COMMONFUNC();
$db = new DB();
$flag = 0;
/*
 * checks users who have a free trial and ends the trial if 5 days have passed
 */
$college_subscription_query = "select * from tbl_college_coach_register where date(fldAddDate)<= (DATE_SUB(now(), INTERVAL 5 day)) and fldSubscribe=2";
$db->query($college_subscription_query);
$db->next_record();
for ($k = 0; $k < $db->num_rows(); $k++) {
    $arr_info[$k]['fldCollegename'] = $db->f('fldCollegename');
    $arr_info[$k]['fldStatus'] = $db->f('fldStatus');
    $arr_info[$k]['fldSubscribe'] = $db->f('fldSubscribe');
    $db->next_record();
}
for ($kj = 0; $kj < count($arr_info); $kj++) {
    $sql1 = "update  " . TBL_COLLEGE_COACH_REGISTER . "  set   fldSubscribe='0' where fldCollegename='" . $arr_info[$kj]['fldCollegename'] . "'";
    $db->query($sql1);
}
/*
 * Not sure what this does, but setting up a section for it
 */
$college_subscription_complet_query = "select * from tbl_college_coach_register where date(fldCancelDate) = now() and fldCancelCount !=0";
$db1->query($college_subscription_query);
$db1->next_record();
if ($db1->num_rows() > 0) {
コード例 #21
0
<?php

$SessionUserID = isset($_SESSION['Athlete_id']) ? $_SESSION['Athlete_id'] : 0;
$rating_func = new COMMONFUNC();
$rating_db = new DB();
if ($SessionUserID > 0) {
    $query = "Select * from tbl_athelete_register where fldId = '{$SessionUserID}' ";
    $rating_db->query($query);
    $rating_db->next_record();
    $totalPages = $rating_db->num_rows();
    if ($totalPages > 0) {
        $UserID = $rating_db->f('fldId');
        $uploadImage = $rating_db->f('fldImage');
        $coachApprove = $rating_db->f('fldApproveCoachId');
        $uploadVideo = $rating_func->GetValue("tbl_athlete_video", "fldId", "fldAthleteId", $rating_db->f('fldId'));
        $uploadGameSchedule = $rating_func->GetValue("tbl_event", "fldEventId", "fld_UserType='athlete' AND fldUserName", $rating_db->f('fldUsername'));
        $fldGPA = $rating_func->output_fun($rating_db->f('fldGPA'));
        $fldSATScore = $rating_func->output_fun($rating_db->f('fldSATScore'));
        $fldACTScore = $rating_func->output_fun($rating_db->f('fldACTScore'));
        $fldClassRank = $rating_func->output_fun($rating_db->f('fldClassRank'));
        $fldClearinghouseEligible = $rating_func->output_fun($rating_db->f('fldClearinghouseEligible'));
        $fldIntendedMajor = $rating_func->output_fun($rating_db->f('fldIntendedMajor'));
        $fldClass = $rating_func->output_fun($rating_db->f('fldClass'));
        $fldHeight = $rating_func->output_fun($rating_db->f('fldHeight'));
        $fldWeight = $rating_func->output_fun($rating_db->f('fldWeight'));
        $fldSport = $rating_func->output_fun($rating_db->f('fldSport'));
        //$fldJerseyNumber = $rating_func -> output_fun($rating_db -> f('fldJerseyNumber'));
        $fldPrimaryPosition = $rating_func->output_fun($rating_db->f('fldPrimaryPosition'));
        $fldSecondaryPosition = $rating_func->output_fun($rating_db->f('fldSecondaryPosition'));
        $fldVertical = $rating_func->output_fun($rating_db->f('fldVertical'));
        $fld40_yardDash = $rating_func->output_fun($rating_db->f('fld40_yardDash'));
コード例 #22
0
 }
 if ($_REQUEST['fldPassword'] == '') {
     $error_msg[] = "Please enter Password";
 }
 if ($_REQUEST['logininfo'] == "athlete") {
     ########### ATHLETE #############
     $fldUsername = $func->input_fun($_POST['fldUsername']);
     $fldPassword = $func->input_fun($_POST['fldPassword']);
     $whereClause = "fldUsername='******' and fldPassword= '******' ";
     $retVal = $db->MatchingRec(TBL_ATHELETE_REGISTER, $whereClause);
     //If Username & Password Matches
     if ($retVal != 0) {
         $query = " Select fldUsername,fldEmail,fldId,fldApproveCoachId,fldStatus from " . TBL_ATHELETE_REGISTER . " where  fldUsername = '******' ";
         $db->query($query);
         $db->next_record();
         $fldUsername = $db->f('fldUsername');
         $Email = $db->f('fldEmail');
         $fldId = $db->f('fldId');
         //IsApproveds
         $sessIsApproved = 0;
         $fldApproveCoachId = $db->f('fldApproveCoachId ');
         if ($fldApproveCoachId != 0) {
             $sessIsApproved = 1;
         }
         //Status
         $sessStatus = "Active";
         $fldStatus = $db->f('fldStatus');
         if ($fldStatus == "DEACTIVE") {
             $sessStatus = "Inactive";
         }
         if ($sessStatus == "Active") {
コード例 #23
0






</script>

</head>

<body>

<?php 
include 'header.php';
?>

    <!--middle panel starts from here -->

<!--content panel starts from here -->

<div class="container">

<div class="innerWraper">

<div class="middle-bg">

<div class="cantener">

<div class="register-main">
コード例 #24
0
include_once "inc/common_functions.php";
//for common function
include_once "inc/page.inc.php";
include_once "inc/config.inc.php";
//for paging
$func = new COMMONFUNC();
$db = new DB();
$q = $_GET["q"];
if ($q != 'select') {
    ?>
<label>Location:</label>
<?php 
    $query = "Select * from " . TBL_HS_AAU_TEAM . " where fldId =" . $q;
    $db->query($query);
    $db->next_record();
    $address = $db->f('fldAddress');
    $city = $db->f('fldCity');
    $state = $db->f('fldState');
    $zipcode = $db->f('fldZipcode');
    $location = $address . "\r\n" . $city . ", " . $state . " " . $zipcode;
    ?>
<span>	<textarea name="fldEventLocation" id="fldEventLocation" rows="4" cols="15"    ><?php 
    if ($location) {
        echo $location;
    }
    ?>
</textarea></span><font color="#0000ff">*</font></span>
<?php 
} else {
    ?>
コード例 #25
0
<?php

include_once "inc/common_functions.php";
//for common function
include_once "inc/page.inc.php";
include_once "inc/config.inc.php";
//for paging
$func = new COMMONFUNC();
$db = new DB();
$qs = $_GET["qs"];
$schoolid = $_GET["schoolid"];
$selquery = 'select c.fldName as name,c.fldId as id  from ' . TBL_HS_AAU_COACH . ' c,' . TBL_HS_AAU_TEAM_COACH . ' ts where c.fldId=ts.coachnameid and  ts.sportid =' . $qs . ' and ts.schoolid=' . $schoolid;
$db->query($selquery);
$db->next_record();
$strcombo = '';
$strcombo .= '<select name="fldCoach" style="width:276px">';
$strcombo .= '<option value = "">Select coach</option>';
for ($i = 0; $i < $db->num_rows(); $i++) {
    $strcombo .= '<option value="' . $db->f('id') . '">';
    $strcombo .= $db->f('name') . '</option>';
    $db->next_record();
}
echo $strcombo .= '</select>';
コード例 #26
0

  if (window.opener.progressWindow)

		

 {

    window.opener.progressWindow.close()

  }

  window.close();

}

</script>

</head>

<body>



    <!--middle panel starts from here -->

<!--content panel starts from here -->

<div class="container">

<div class="innerWraper">
コード例 #27
0
include_once 'inc/common_functions.php';
include_once 'inc/page.inc.php';
// TODO: Add a form token to make sure people aren't spoofing form data
session_start();
if ($_SESSION['mode'] == "" or $_SESSION['FRONTEND_USER'] == "") {
    header("Location:index.php");
}
$func = new COMMONFUNC();
$db = new DB();
$flag = 0;
/*
 * gets coach information. This is used to pre-fill form fields 
 * and provide necessary data for the Authorize.net transaction
 */
$query = 'SELECT * FROM ' . TBL_COLLEGE_COACH_REGISTER . " WHERE fldUserName='******'";
$db->query($query);
$db->next_record();
$fldCoach = $db->f('fldId');
$fldCollegename = $db->f('fldCollegename');
$fldtransectionId = $db->f('fldtransectionId');
$fldCancelCount = $db->f('fldCancelCount');
$fldSubscribe = $db->f('fldSubscribe');
// gets all active subscriptions for the current user
// gets available subscription types for the form
$table = TBL_COLLEGE_SUBSCRIPTION;
$fields = 'fldId,fldType,fldSport';
$where = 'WHERE fldCoach=' . $fldCoach . ' AND fldActive=1';
$subsList = $func->selectTableOrder($table, $fields, 'fldId', $where);
$subsCount = count($subsList);
// creates a human-readable version of the active subscriptions
コード例 #28
0
     $AAUCity = $row['AAUCity'];
     $AAUState = $row['AAUState'];
     $AAUZipCode = $row['AAUZipCode'];
     $AAUOther = $row['AAUOther'];
     // END ADD fIELD ON 16-2-13
     $fldTransportation = $row['fldTransportation'];
     if (isset($row['fldTranscript'])) {
         $fldTranscript = $row['fldTranscript'];
     }
     $fldCouponNumber = $row['fldCouponNumber'];
     $fldprice = $row['fldprice'];
     $fldpaymentstatus = $row['fldpaymentstatus'];
     $evquery = "SELECT * FROM " . TBL_SPECIAL_EVENT . " WHERE `fldEventId` ='" . $fldSpecialEvent . "' ";
     $db->query($evquery);
     $db->next_record();
     $fldEventStatus = $func->output_fun($db->f('fldEventStatus'));
     $fldEventStartDate = $func->output_fun($db->f('fldEventStartDate'));
     $fldEventName = $func->output_fun($db->f('fldEventName'));
     $fldEventcurrentprice = $func->output_fun($db->f('fldEventcurrentprice'));
     $fldEventfutureprice = $func->output_fun($db->f('fldEventfutureprice'));
     $Early_Discount_day = $func->output_fun($db->f('Early_Discount_day'));
     $Early_discount_rate = $func->output_fun($db->f('Early_discount_rate'));
     $Transcript_discount = $func->output_fun($db->f('Transcript_discount'));
 }
 function getExtension($str)
 {
     $i = strrpos($str, ".");
     if (!$i) {
         return "";
     }
     $l = strlen($str) - $i;
コード例 #29
0
include_once "../inc/config.inc.php";
//for paging
$func = new COMMONFUNC();
$db = new DB();
$q = $_GET["q"];
if ($q != 'select') {
    ?>

         <tr height="20">

			<td valign="top" align="right" class="normalblack_12" width="30%">Location<font color="red"> *</font> </td>

			<td valign="top"  align="center" class="normalblack_12" > : &nbsp; </td>     

                                	<?php 
    $query = "Select * from " . TBL_HS_AAU_TEAM . " where fldId =" . $q;
    $db->query($query);
    $db->next_record();
    $location = $db->f('fldAddress');
    ?>

			<td valign="top" align="left" class="normalblack_12"  colspan=2><textarea name="fldEventLocation" id="fldEventLocation" rows="4" cols="24"    ><?php 
    if ($location) {
        echo $location;
    }
    ?>
</textarea></td>

			</tr>

			<?php 
コード例 #30
0
include_once "inc/config.inc.php";
//for paging
session_start();
$func = new COMMONFUNC();
$db = new DB();
$lnb = "2";
$error_msg = '';
$flag = 0;
$fldId = $_SESSION['FRONTEND_USER'];
if ($_SESSION['mode'] == 'college' and $fldId != "") {
    #get the records
    $query = " Select * from " . TBL_COLLEGE_COACH_REGISTER . " where fldUserName = '******' ";
    $db->query($query);
    $db->next_record();
    if ($db->num_rows() > 0) {
        $College_id = $db->f('fldId');
        $db->query($query);
        $db->next_record();
        $fldUserName = $db->f('fldUserName');
        $fldCollegename = $db->f('fldCollegename');
        $fldCoachname = $db->f('fldCoachname');
        $fldPosition = $db->f('fldPosition');
        $fldNeedType = $db->f('fldNeedType');
        $fldEmail = $db->f('fldEmail');
        $fldFirstName = $db->f('fldFirstName');
        $fldLastName = $db->f('fldLastName');
        $fldAlternativeEmail = $db->f('fldAlternativeEmail');
        $fldPhone = $db->f('fldPhone');
        $fldAlternativePhone = $db->f('fldAlternativePhone');
        $fldEnrollmentNumber = $db->f('fldEnrollmentNumber');
        $fldDivison = $db->f('fldDivison');