mirror of
				https://github.com/fspc/Yellow-Bike-Database.git
				synced 2025-11-03 17:05:35 -05:00 
			
		
		
		
	Adds statuses for volunteers and visitors, totals, and total combined. Pretty interesting stats. Will add date range submit next.
This commit is contained in:
		
							parent
							
								
									3456b069f0
								
							
						
					
					
						commit
						e54836d09a
					
				@ -2,25 +2,15 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
require_once('../Connections/YBDB.php');
 | 
					require_once('../Connections/YBDB.php');
 | 
				
			||||||
require_once('../Connections/database_functions.php');
 | 
					require_once('../Connections/database_functions.php');
 | 
				
			||||||
 | 
					mysql_select_db($database_YBDB, $YBDB);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// ** ALTER TABLE shop_user_roles ADD other_volunteer tinyint(1) NOT NULL DEFAULT '0';
 | 
					// ** ALTER TABLE shop_user_roles ADD other_volunteer tinyint(1) NOT NULL DEFAULT '0';
 | 
				
			||||||
// UPDATE shop_user_roles SET other_volunteer=1 WHERE shop_user_role_id="Student Volunteer/Community Service Hours";
 | 
					// UPDATE shop_user_roles SET other_volunteer=1 WHERE shop_user_role_id="Student Volunteer/Community Service Hours";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//  SELECT shop_user_role_id FROM shop_user_roles WHERE volunteer=1 AND other_volunteer!=1;;
 | 
					//  SELECT shop_user_role_id FROM shop_user_roles WHERE volunteer=1 AND other_volunteer!=1;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$query = "SELECT shop_user_role, COUNT(DISTINCT shop_hours.contact_id) as unique_volunteers, 
 | 
				
			||||||
+-------------------------------------------+-------------------+------------------+-----------------+
 | 
					 | 
				
			||||||
| shop_user_role                            | unique_volunteers | volunteer_visits | volunteer_hours |
 | 
					 | 
				
			||||||
+-------------------------------------------+-------------------+------------------+-----------------+
 | 
					 | 
				
			||||||
| Volunteer                                 |               103 |              425 |            1347 |
 | 
					 | 
				
			||||||
| Coordinator                               |                 7 |              238 |            1005 |
 | 
					 | 
				
			||||||
| Greeter                                   |                 7 |               62 |             188 |
 | 
					 | 
				
			||||||
| Student Volunteer/Community Service Hours |                13 |               53 |             136 |
 | 
					 | 
				
			||||||
+-------------------------------------------+-------------------+------------------+-----------------+
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SELECT shop_user_role, COUNT(DISTINCT shop_hours.contact_id) as unique_volunteers, 
 | 
					 | 
				
			||||||
			COUNT(shop_hours.contact_id) as volunteer_visits, 
 | 
								COUNT(shop_hours.contact_id) as volunteer_visits, 
 | 
				
			||||||
			ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), 
 | 
								ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), 
 | 
				
			||||||
			TIME(time_in)))/60)) AS volunteer_hours 
 | 
								TIME(time_in)))/60)) AS volunteer_hours 
 | 
				
			||||||
@ -30,16 +20,21 @@ LEFT JOIN shop_user_roles ON shop_hours.shop_user_role = shop_user_roles.shop_us
 | 
				
			|||||||
			WHERE shop_user_roles.volunteer = 1 
 | 
								WHERE shop_user_roles.volunteer = 1 
 | 
				
			||||||
			OR shop_user_roles.other_volunteer = 1 
 | 
								OR shop_user_roles.other_volunteer = 1 
 | 
				
			||||||
			AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH) GROUP BY shop_user_role 
 | 
								AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH) GROUP BY shop_user_role 
 | 
				
			||||||
ORDER BY volunteer_hours DESC;
 | 
								ORDER BY volunteer_hours DESC;";
 | 
				
			||||||
 | 
					$volunteers_sql = mysql_query($query, $YBDB) or die(mysql_error());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
+----------------+-----------------+--------+-------+
 | 
					$query = "SELECT COUNT(DISTINCT shop_hours.contact_id) as unique_volunteers,
 | 
				
			||||||
| shop_user_role | unique_visitors | visits | hours |
 | 
								COUNT(shop_hours.contact_id) as volunteer_visits,
 | 
				
			||||||
+----------------+-----------------+--------+-------+
 | 
								ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), TIME(time_in)))/60)) AS volunteer_hours
 | 
				
			||||||
| Personal       |             141 |    303 |   679 |
 | 
								FROM shop_hours 
 | 
				
			||||||
| Shopping       |              61 |     66 |    48 |
 | 
								LEFT JOIN contacts ON shop_hours.contact_id = contacts.contact_id
 | 
				
			||||||
+----------------+-----------------+--------+-------+
 | 
								LEFT JOIN shop_user_roles ON shop_hours.shop_user_role = shop_user_roles.shop_user_role_id   
 | 
				
			||||||
 | 
								WHERE shop_user_roles.volunteer = 1 
 | 
				
			||||||
 | 
								OR shop_user_roles.other_volunteer = 1
 | 
				
			||||||
 | 
								AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH);";
 | 
				
			||||||
 | 
					$total_volunteers_sql = mysql_query($query, $YBDB) or die(mysql_error());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SELECT shop_user_role, COUNT(DISTINCT shop_hours.contact_id) as unique_visitors, 
 | 
					$query = "SELECT shop_user_role, COUNT(DISTINCT shop_hours.contact_id) as unique_visitors, 
 | 
				
			||||||
			COUNT(shop_hours.contact_id) as visits, 
 | 
								COUNT(shop_hours.contact_id) as visits, 
 | 
				
			||||||
			ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), 
 | 
								ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), 
 | 
				
			||||||
			TIME(time_in)))/60)) AS hours 
 | 
								TIME(time_in)))/60)) AS hours 
 | 
				
			||||||
@ -49,32 +44,10 @@ LEFT JOIN shop_user_roles ON shop_hours.shop_user_role = shop_user_roles.shop_us
 | 
				
			|||||||
			WHERE shop_user_roles.volunteer = 0 
 | 
								WHERE shop_user_roles.volunteer = 0 
 | 
				
			||||||
			AND shop_user_roles.other_volunteer = 0 
 | 
								AND shop_user_roles.other_volunteer = 0 
 | 
				
			||||||
			AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH) GROUP BY shop_user_role 
 | 
								AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH) GROUP BY shop_user_role 
 | 
				
			||||||
ORDER BY hours DESC;
 | 
								ORDER BY hours DESC;";
 | 
				
			||||||
 | 
					$visitors_sql = mysql_query($query, $YBDB) or die(mysql_error());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$query = "SELECT COUNT(DISTINCT shop_hours.contact_id) as unique_visitors,
 | 
				
			||||||
+-------------------+------------------+-----------------+
 | 
					 | 
				
			||||||
| unique_volunteers | volunteer_visits | volunteer_hours |
 | 
					 | 
				
			||||||
+-------------------+------------------+-----------------+
 | 
					 | 
				
			||||||
|               114 |              778 |            2676 |
 | 
					 | 
				
			||||||
+-------------------+------------------+-----------------+
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SELECT COUNT(DISTINCT shop_hours.contact_id) as unique_volunteers,
 | 
					 | 
				
			||||||
COUNT(shop_hours.contact_id) as volunteer_visits,
 | 
					 | 
				
			||||||
ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), TIME(time_in)))/60)) AS volunteer_hours
 | 
					 | 
				
			||||||
FROM shop_hours 
 | 
					 | 
				
			||||||
LEFT JOIN contacts ON shop_hours.contact_id = contacts.contact_id
 | 
					 | 
				
			||||||
LEFT JOIN shop_user_roles ON shop_hours.shop_user_role = shop_user_roles.shop_user_role_id   
 | 
					 | 
				
			||||||
WHERE shop_user_roles.volunteer = 1 
 | 
					 | 
				
			||||||
OR shop_user_roles.other_volunteer = 1
 | 
					 | 
				
			||||||
AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
+-----------------+--------+-------+
 | 
					 | 
				
			||||||
| unique_visitors | visits | hours |
 | 
					 | 
				
			||||||
+-----------------+--------+-------+
 | 
					 | 
				
			||||||
|             188 |    369 |   727 |
 | 
					 | 
				
			||||||
+-----------------+--------+-------+
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SELECT COUNT(DISTINCT shop_hours.contact_id) as unique_visitors,
 | 
					 | 
				
			||||||
			COUNT(shop_hours.contact_id) as visits,
 | 
								COUNT(shop_hours.contact_id) as visits,
 | 
				
			||||||
			ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), TIME(time_in)))/60)) AS hours
 | 
								ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), TIME(time_in)))/60)) AS hours
 | 
				
			||||||
			FROM shop_hours 
 | 
								FROM shop_hours 
 | 
				
			||||||
@ -82,18 +55,25 @@ LEFT JOIN contacts ON shop_hours.contact_id = contacts.contact_id
 | 
				
			|||||||
			LEFT JOIN shop_user_roles ON shop_hours.shop_user_role = shop_user_roles.shop_user_role_id   
 | 
								LEFT JOIN shop_user_roles ON shop_hours.shop_user_role = shop_user_roles.shop_user_role_id   
 | 
				
			||||||
			WHERE shop_user_roles.volunteer = 0 
 | 
								WHERE shop_user_roles.volunteer = 0 
 | 
				
			||||||
			AND shop_user_roles.other_volunteer = 0
 | 
								AND shop_user_roles.other_volunteer = 0
 | 
				
			||||||
AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH);
 | 
								AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH);";
 | 
				
			||||||
 | 
					$total_visitors_sql = mysql_query($query, $YBDB) or die(mysql_error());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$query = "SELECT COUNT(DISTINCT shop_hours.contact_id) as unique_vv,
 | 
				
			||||||
*/
 | 
								COUNT(shop_hours.contact_id) as visits,
 | 
				
			||||||
 | 
								ROUND(SUM(HOUR(SUBTIME( TIME(time_out), TIME(time_in))) + MINUTE(SUBTIME( TIME(time_out), TIME(time_in)))/60)) AS hours
 | 
				
			||||||
 | 
								FROM shop_hours 
 | 
				
			||||||
 | 
								LEFT JOIN contacts ON shop_hours.contact_id = contacts.contact_id
 | 
				
			||||||
 | 
								LEFT JOIN shop_user_roles ON shop_hours.shop_user_role = shop_user_roles.shop_user_role_id   
 | 
				
			||||||
 | 
								WHERE shop_user_roles.volunteer >= 0 
 | 
				
			||||||
 | 
								OR shop_user_roles.other_volunteer >= 0
 | 
				
			||||||
 | 
								AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH);";
 | 
				
			||||||
 | 
					$total_sql = mysql_query($query, $YBDB) or die(mysql_error());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
?>
 | 
					?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<?php include("../include_header_stats.html"); ?>
 | 
					<?php include("../include_header_stats.html"); ?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<link rel="stylesheet" type="text/css" href="../css/mystyle.css">
 | 
					        <table class="shop_log">
 | 
				
			||||||
 | 
					 | 
				
			||||||
        <table id="shop_log">
 | 
					 | 
				
			||||||
        <tr valign="top">
 | 
					        <tr valign="top">
 | 
				
			||||||
	  	  </tr>
 | 
						  	  </tr>
 | 
				
			||||||
        <tr>
 | 
					        <tr>
 | 
				
			||||||
@ -108,31 +88,127 @@ AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH);
 | 
				
			|||||||
			    <td width="relative">Volunteer Visits<br /></td>
 | 
								    <td width="relative">Volunteer Visits<br /></td>
 | 
				
			||||||
			    <td width="relative">Volunteer Hours</td>	
 | 
								    <td width="relative">Volunteer Hours</td>	
 | 
				
			||||||
		      </tr>
 | 
							      </tr>
 | 
				
			||||||
              <form method="post" name="FormUpdate_<?php echo $row_Recordset1['shop_id']; ?>" action="<?php echo $editFormAction; ?>">
 | 
					                <?php while ($result = mysql_fetch_assoc($volunteers_sql)) { //do { 
 | 
				
			||||||
                <?php while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)) { //do { 
 | 
								  		 ?> 
 | 
				
			||||||
			  if(1 == 2) {?>
 | 
					 | 
				
			||||||
                <tr valign="bottom" bgcolor="#CCCC33">
 | 
					 | 
				
			||||||
                  <td> </td>
 | 
					 | 
				
			||||||
			      <td> </td>
 | 
					 | 
				
			||||||
			      <td> </td>
 | 
					 | 
				
			||||||
			      <td> </td>
 | 
					 | 
				
			||||||
			      <td> </td>
 | 
					 | 
				
			||||||
			      <td> </td>
 | 
					 | 
				
			||||||
			  <td> </td>
 | 
					 | 
				
			||||||
			    </tr>
 | 
					 | 
				
			||||||
                <input type="hidden" name="MM_insert" value="FormEdit">
 | 
					 | 
				
			||||||
                <input type="hidden" name="shop_id" value="<?php echo $row_Recordset1['shop_id']; ?>">
 | 
					 | 
				
			||||||
              </form>
 | 
					 | 
				
			||||||
		    <?php } else { // end if EDIT RECORD ?>
 | 
					 | 
				
			||||||
            <tr>
 | 
					            <tr>
 | 
				
			||||||
                <td><a href="<?php echo "{$page_individual_history_log}?contact_id=" . $row_Recordset1['contact_id']; ?>"><?php echo $row_Recordset1['full_name']; ?></a></td>
 | 
								    <td class="yb_standardRIGHTred"> <?php echo $result['shop_user_role']; ?></td>
 | 
				
			||||||
			    <td class="yb_standardRIGHTred"> <?php echo number_format($row_Recordset1['vh3_hours'],0); ?></td>
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['unique_volunteers'],0); ?></td>
 | 
				
			||||||
			    <td class="yb_standardRIGHT"> <?php echo number_format($row_Recordset1['th3_hours'],0); ?></td>
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['volunteer_visits'],0); ?></td>
 | 
				
			||||||
			    <td class="yb_standardRIGHT"> <?php echo number_format($row_Recordset1['th3_visits'],0); ?></td>
 | 
								    <td class="yb_standardRIGHTred"> <?php echo number_format($result['volunteer_hours'],0); ?></td>
 | 
				
			||||||
			    <td class="yb_standardRIGHTred"> <?php echo number_format($row_Recordset1['vh_hours'],0); ?></td>
 | 
							      </tr>
 | 
				
			||||||
 | 
					              <?php
 | 
				
			||||||
 | 
							  } // end WHILE count of recordset ?>
 | 
				
			||||||
 | 
					          </table>	  </td>
 | 
				
			||||||
 | 
						  		</tr>
 | 
				
			||||||
 | 
					     		</table>
 | 
				
			||||||
 | 
					     		
 | 
				
			||||||
 | 
					        <table class="shop_log">
 | 
				
			||||||
 | 
					        <tr valign="top">
 | 
				
			||||||
 | 
						  	  </tr>
 | 
				
			||||||
 | 
					        <tr>
 | 
				
			||||||
 | 
					          <td>
 | 
				
			||||||
 | 
					            <table  border="1" cellpadding="1" cellspacing="0">
 | 
				
			||||||
 | 
					              <tr bgcolor="#99CC33" class="yb_standardCENTERbold">
 | 
				
			||||||
 | 
					                <td colspan="4" height="25">Total Volunteers</td>
 | 
				
			||||||
 | 
						          </tr>
 | 
				
			||||||
 | 
					              <tr valign="top" bgcolor="#99CC33" class="yb_standardCENTER">
 | 
				
			||||||
 | 
								    <td width="relative">Unique Volunteers<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Volunteer Visits<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Volunteer Hours</td>	
 | 
				
			||||||
 | 
							      </tr>
 | 
				
			||||||
 | 
					                <?php while ($result = mysql_fetch_assoc($total_volunteers_sql)) { //do { 
 | 
				
			||||||
 | 
								  		 ?> 
 | 
				
			||||||
 | 
					            <tr>  
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['unique_volunteers'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['volunteer_visits'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHTred"> <?php echo number_format($result['volunteer_hours'],0); ?></td>
 | 
				
			||||||
 | 
							      </tr>
 | 
				
			||||||
 | 
					              <?php
 | 
				
			||||||
 | 
							  } // end WHILE count of recordset ?>
 | 
				
			||||||
 | 
					          </table>	  </td>
 | 
				
			||||||
 | 
						  		</tr>
 | 
				
			||||||
 | 
					     		</table>	
 | 
				
			||||||
 | 
							<br \><br \>	
 | 
				
			||||||
 | 
							 <table class="shop_log">
 | 
				
			||||||
 | 
					        <tr valign="top">
 | 
				
			||||||
 | 
						  	  </tr>
 | 
				
			||||||
 | 
					        <tr>
 | 
				
			||||||
 | 
					          <td>
 | 
				
			||||||
 | 
					            <table  border="1" cellpadding="1" cellspacing="0">
 | 
				
			||||||
 | 
					              <tr bgcolor="#99CC33" class="yb_standardCENTERbold">
 | 
				
			||||||
 | 
					                <td colspan="4" height="25">Visitors</td>
 | 
				
			||||||
 | 
						          </tr>
 | 
				
			||||||
 | 
					              <tr valign="top" bgcolor="#99CC33" class="yb_standardCENTER">
 | 
				
			||||||
 | 
					             <td width="relative">Shop Roles<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Unique Visitors<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Visits<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Hours</td>	
 | 
				
			||||||
 | 
							      </tr>
 | 
				
			||||||
 | 
					                <?php while ($result = mysql_fetch_assoc($visitors_sql)) { //do { 
 | 
				
			||||||
 | 
								  		 ?> 
 | 
				
			||||||
 | 
					            <tr>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHTred"> <?php echo $result['shop_user_role']; ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['unique_visitors'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['visits'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHTred"> <?php echo number_format($result['hours'],0); ?></td>
 | 
				
			||||||
 | 
							      </tr>
 | 
				
			||||||
 | 
					              <?php
 | 
				
			||||||
 | 
							  } // end WHILE count of recordset ?>
 | 
				
			||||||
 | 
					          </table>	  </td>
 | 
				
			||||||
 | 
						  		</tr>
 | 
				
			||||||
 | 
					     		</table>
 | 
				
			||||||
 | 
					     		
 | 
				
			||||||
 | 
					        <table class="shop_log">
 | 
				
			||||||
 | 
					        <tr valign="top">
 | 
				
			||||||
 | 
						  	  </tr>
 | 
				
			||||||
 | 
					        <tr>
 | 
				
			||||||
 | 
					          <td>
 | 
				
			||||||
 | 
					            <table  border="1" cellpadding="1" cellspacing="0">
 | 
				
			||||||
 | 
					              <tr bgcolor="#99CC33" class="yb_standardCENTERbold">
 | 
				
			||||||
 | 
					                <td colspan="4" height="25">Total Visitors</td>
 | 
				
			||||||
 | 
						          </tr>
 | 
				
			||||||
 | 
					              <tr valign="top" bgcolor="#99CC33" class="yb_standardCENTER">
 | 
				
			||||||
 | 
								    <td width="relative">Unique Visitors<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Visits<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Hours</td>	
 | 
				
			||||||
 | 
							      </tr>
 | 
				
			||||||
 | 
					                <?php while ($result = mysql_fetch_assoc($total_visitors_sql)) { //do { 
 | 
				
			||||||
 | 
								  		 ?> 
 | 
				
			||||||
 | 
					            <tr>  
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['unique_visitors'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['visits'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHTred"> <?php echo number_format($result['hours'],0); ?></td>
 | 
				
			||||||
 | 
							      </tr>
 | 
				
			||||||
 | 
					              <?php
 | 
				
			||||||
 | 
							  } // end WHILE count of recordset ?>
 | 
				
			||||||
 | 
					          </table>	  </td>
 | 
				
			||||||
 | 
						  		</tr>
 | 
				
			||||||
 | 
					     		</table>	
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								<br \><br \>	
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <table class="shop_log">
 | 
				
			||||||
 | 
					        <tr valign="top">
 | 
				
			||||||
 | 
						  	  </tr>
 | 
				
			||||||
 | 
					        <tr>
 | 
				
			||||||
 | 
					          <td>
 | 
				
			||||||
 | 
					            <table  border="1" cellpadding="1" cellspacing="0">
 | 
				
			||||||
 | 
					              <tr bgcolor="#99CC33" class="yb_standardCENTERbold">
 | 
				
			||||||
 | 
					                <td colspan="4" height="25">Total Volunteers and Visitors</td>
 | 
				
			||||||
 | 
						          </tr>
 | 
				
			||||||
 | 
					              <tr valign="top" bgcolor="#99CC33" class="yb_standardCENTER">
 | 
				
			||||||
 | 
								    <td width="relative">Unique<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Visits<br /></td>
 | 
				
			||||||
 | 
								    <td width="relative">Hours</td>	
 | 
				
			||||||
 | 
							      </tr>
 | 
				
			||||||
 | 
					                <?php while ($result = mysql_fetch_assoc($total_sql)) { //do { 
 | 
				
			||||||
 | 
								  		 ?> 
 | 
				
			||||||
 | 
					            <tr>  
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['unique_vv'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHT"> <?php echo number_format($result['visits'],0); ?></td>
 | 
				
			||||||
 | 
								    <td class="yb_standardRIGHTred"> <?php echo number_format($result['hours'],0); ?></td>
 | 
				
			||||||
		      </tr>
 | 
							      </tr>
 | 
				
			||||||
              <?php
 | 
					              <?php
 | 
				
			||||||
		  } // end if EDIT RECORD 
 | 
					 | 
				
			||||||
		  } // end WHILE count of recordset ?>
 | 
							  } // end WHILE count of recordset ?>
 | 
				
			||||||
          </table>	  </td>
 | 
					          </table>	  </td>
 | 
				
			||||||
	  		</tr>
 | 
						  		</tr>
 | 
				
			||||||
@ -140,5 +216,8 @@ AND time_in > DATE_SUB(CURDATE(),INTERVAL 12 MONTH);
 | 
				
			|||||||
		
 | 
							
 | 
				
			||||||
		<?php include("../include_footer.html"); ?>
 | 
							<?php include("../include_footer.html"); ?>
 | 
				
			||||||
<?php
 | 
					<?php
 | 
				
			||||||
mysql_free_result($Recordset1);
 | 
					mysql_free_result($volunteers_sql);
 | 
				
			||||||
 | 
					mysql_free_result($total_volunteers_sql);
 | 
				
			||||||
 | 
					mysql_free_result($visitors_sql);
 | 
				
			||||||
 | 
					mysql_free_result($total_visitors_sql);
 | 
				
			||||||
?>
 | 
					?>
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user