added insertion of creator id

This commit is contained in:
2025-05-29 17:29:58 +02:00
parent 46cc5135b2
commit 671fb6a0fe
+8
View File
@@ -544,6 +544,14 @@ $result = $databaseConnection->query("SELECT * FROM `currency` WHERE currency=\"
$content_currency_id = $result->fetch_assoc()["id"]; $content_currency_id = $result->fetch_assoc()["id"];
$result2 = $databaseConnection->query("SELECT * FROM `creator` WHERE jinxxy_url=\"" . $creator_jinxxyURL . "\";");
if ($result2->num_rows > 0) {
$content_creator_id = $result2->fetch_assoc()["id"];
} else {
$content_creator_id = "";
}
/* /*
echo '<br><span style="font-family: consolas">Creator Name </span>' . $creator_name; echo '<br><span style="font-family: consolas">Creator Name </span>' . $creator_name;