Current Pooja List
Devotees offer flowers, shawls, sweets, and Dakshina (donations) as a token of gratitude..
| ID |
Type |
Name |
Description |
Time |
Amount |
Prasadam |
Dharshan Entry |
Action |
= CURDATE();
";
$result = mysqli_query($con, $sql);
$categories = [];
while ($row = mysqli_fetch_assoc($result)) {
$categories[] = $row;
}
return $categories;
}
$categories = fetchCategories($con);
$count = 1;
foreach ($categories as $category) {
$poojaDate = $category['date'];
$formattedDate = $poojaDate ? date('d-m-Y', strtotime($poojaDate)) : 'N/A';
echo "";
echo "| " . $count++ . " | ";
echo "" . htmlspecialchars($category['type']) . " | ";
echo "" . htmlspecialchars($category['title']) . " | ";
echo "" . htmlspecialchars($category['description']) . " | ";
echo "" . ($poojaDate ? $formattedDate . ' ' . htmlspecialchars($category['time']) : htmlspecialchars($category['time'])) . " | ";
echo "" . htmlspecialchars($category['amount']) . " | ";
echo "" . htmlspecialchars($category['prashadham']) . " | ";
echo "" . htmlspecialchars($category['dharshan_entry']) . " | ";
echo "Book Now | ";
echo "
";
}
?>