<h2>These are the requests this month</h2> 
<?php 
/*  display current month ID  */
$curr_month = date('m', time());
$curr_year = date('y', time());
$curr_month_ID = sprintf("%02d", $curr_month) . $curr_year;
echo "ID of this month " . $curr_month_ID;
/*  
		Loop to display one block for every Category,
		Inside, for every category display the Name of the category
		And the list of requests for this month
*/
for ($k = 0; $k < getCatNum(); ++$k) {
    echo "<h3><a href=";
    echo getCategoryURL($k);
    echo ">";
    echo getCategoryName($k);
    echo "</a></h3>";
    displayThisMonthRequests($curr_month_ID, $k + 1);
}
<p>
  Logged  as 
  <strong style="color:purple; text-transform:capitalize;"><?php 
    echo $_SESSION['SESS_FIRST_NAME'];
    ?>
</strong>
  <br /><br />
  <a href="form_update_ticket_type.php">Update Tax Saver Types</a> | <a href="member_profile.php">My Profile</a> | <a href="logout.php">Logout</a>
</p>

<?php 
}
?>

These are the requests this month: <br/>

ID of this month 

<?php 
$curr_month = date('m', time());
$curr_year = date('y', time());
$curr_month_ID = sprintf("%02d", $curr_month) . $curr_year;
echo $curr_month_ID;
?>

<?php 
displayThisMonthRequests($curr_month_ID);
?>

<?php 
include './include/footer.php';