0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
ACCOUNTS
/
[
Home
]
File: dashboard_cntrl.php
<?php require_once BASE_DIR."/lib/db/connection.php"; require_once "../model/uploader_mdl.php"; require_once "../model/defaultValues_mdl.php"; require_once "ac_models.php"; $servername = "localhost"; $username = "root"; $password = ""; $dbname = "cpms"; $dbConnection = new mysqli($servername, $username, $password, $dbname); $project_details = CommonModel::getProjects(); // Create an instance of the Ac_Models class and pass the database connection $acModelsInstance = new Ac_Models($dbConnection); // Call the getPendingVouchersCount method on the instance $pendingVouchersCount = $acModelsInstance->getPendingVouchersCount(); //$pi_pend =Ac_models::getPendingVouchersCount("pi"); $ac_pend = $acModelsInstance->getPendingVouchersCount("ac"); ?>