I can fetch the desired record using MySQLi query directly in the database. But how to reflect the count in the webpage as it shows data in the result-set of phpMyAdmin interface?
Below is the MySQLi query I have used to fetch the below detail.
SELECT `recordUniqueID`, COUNT(*) FROM `status_data` WHERE
`status_data`.`statusName` = '1'
AND `status_data`.`emailAddress` = 'shashibhushan.roy@abcd.com'
AND `status_data`.`recordCreatedDateTime` BETWEEN '2018/11/25 10:00' AND '2019/03/02 10:00'
GROUP BY `recordUniqueID`
HAVING COUNT(*) >= 1
ORDER by id ASC
Below is the result I got in phpMyAdmin interface
Below is the screen from my webpage where I want to show the count of respective rows.
The yellow space I want to fill with the count of the respective rows (repeat values).