change to SQL

This commit is contained in:
schrom01
2023-02-15 14:32:25 +01:00
parent 41d160b8dc
commit 8b2796d00a
+1 -1
View File
@@ -28,7 +28,7 @@ if ($conn->connect_error) {
function saveToDatabase($contentArray, $conn) {
echo "sending Query to Database<br>";
$sql = "SELECT id FROM `topics` WHERE 1";
$sql = "SELECT * FROM `topics` WHERE 1";
$result = $conn->query($sql);
echo "Select Query sent<br> Result: " . $result;
if($result === 0) {