setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// SQL query to search for the date and limit to 20 records
$sql = "SELECT TOP 20 * FROM DavisDbase WHERE YYYYMonthDayHourMinute >= ?";
$stmt = $conn->prepare($sql);
$stmt->execute([$date]);
echo "
Search Results for Date: $date
";
echo "
";
echo "
Date
Wind Direction
";
// Fetch and display the results
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$windDirection = isset($row['Wind Direction']) ? $row['Wind Direction'] : 'N/A';
echo "