Search Davis Data by Date

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 ""; // Fetch and display the results while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) { $windDirection = isset($row['Wind Direction']) ? $row['Wind Direction'] : 'N/A'; echo ""; } echo "
DateWind Direction
{$row['YYYYMonthDayHourMinute']}{$windDirection}
"; } catch (PDOException $e) { echo "Error: " . $e->getMessage(); } } ?>