WIP Suche implementiert, sowie Sortieren der Ergebnisse #19

Merged
niklas.ortmann merged 54 commits from ImplementedSearch into dev 2026-06-03 16:07:42 +02:00
Showing only changes of commit 36276c7c88 - Show all commits
+7
View File
@@ -1,6 +1,13 @@
<?php
session_start();
// debugging
echo "<pre style='background:#fff; color:#000; padding:10px; border:2px solid red; position:relative; z-index:9999;'>";
echo "Aktuelle URL-Parameter (GET): "; print_r($_GET);
echo "Aktueller Session-Inhalt (SESSION): "; print_r($_SESSION);
echo "</pre>";
// debugging
$results = $_SESSION["search_results"] ?? [];
$query = $_SESSION["search_query"] ?? "";
$resultCount = count($results);
2