From 8251d3d97ffbfe523301f3ed57472d326f16462d Mon Sep 17 00:00:00 2001 From: schrom01 Date: Wed, 15 Feb 2023 13:41:11 +0100 Subject: [PATCH] change to SQL --- dataCollector/dataCollector.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dataCollector/dataCollector.php b/dataCollector/dataCollector.php index dfc203d..9b1d9e0 100644 --- a/dataCollector/dataCollector.php +++ b/dataCollector/dataCollector.php @@ -24,7 +24,9 @@ $mysqli = new mysqli($databaseAddress, $databaseUser, $databasePassword, $databa $mysqli = new mysqli($databaseAddress, $databaseUser, $databasePassword, $databaseName); function saveToDatabase($contentArray, $mysqli) { - return $mysqli->query("INSERT INTO `topics` (`id`, `fullJSON`, `timeWatchM`,`timeWatchW`, `timeWatchD`, `countWatchM`, `countWatchW`, `countWatchD`) values ($contentArray[0], $contentArray[2], $contentArray[3], $contentArray[4], $contentArray[5], $contentArray[6], $contentArray[7], $contentArray[8]) ON DUPLICATE KEY UPDATE `id` = $contentArray[0]"); + $response = $mysqli->query("INSERT INTO `topics` (`id`, `fullJSON`, `timeWatchM`,`timeWatchW`, `timeWatchD`, `countWatchM`, `countWatchW`, `countWatchD`) values ($contentArray[0], $contentArray[2], $contentArray[3], $contentArray[4], $contentArray[5], $contentArray[6], $contentArray[7], $contentArray[8]) ON DUPLICATE KEY UPDATE `id` = $contentArray[0]"); + echo $response; + return $response; } function getFromDatabase() {