How to present data on another, selfwritten php page?
My Scheduler works fine with a mysqli connection.
I just want to fetch data from database without Scheduler and present it as regular rows in a “no scheduler page” from a given day in url.
(like list.php?dat=2019-01-25)
I want to echo same data from mysql from a loop like
foreach ($db->query($sql) as $row) {
echo ‘.$row[‘subject’].’ ‘.$row[‘text’].’;
I just dont know how to do it? im using php and mysql.