400 Bad Request

No ID specified.

"; exit; } // Build the filename $filename = __DIR__ . "/2024_finalist_bio.php?ID=$id"; // Check if the file exists if (!file_exists($filename)) { http_response_code(404); echo "

404 Not Found

Bio for ID '$id' not found.

"; exit; } // Output the file contents readfile($filename);