bug fixes

This commit is contained in:
2025-07-19 03:52:10 +02:00
parent c01b52a102
commit 27e4360a41
+3 -2
View File
@@ -52,7 +52,7 @@ $creator_pb = $seller->image;
$content_name = $product->name;
// set content price
$content_price = $product->base_price;
$content_price = $product->price;
// set procuct url
$content_url = $product->url;
@@ -67,6 +67,7 @@ $databaseConnection = new mysqli("localhost", "furatalog_usr", "1yRNpaUtXu[cw@-m
$result = $databaseConnection->query("SELECT * FROM `currency` WHERE symbol=\"" . $currency_currency . "\";");
$content_currency_id = $result->fetch_assoc()["id"];
$currency_tag = $result->fetch_assoc()["currency"];
$result2 = $databaseConnection->query("SELECT * FROM `creator` WHERE jinxxy_url=\"" . $creator_jinxxyURL . "\";");
@@ -139,7 +140,7 @@ echo '<br><span style="font-family: consolas">Currency Code </span>' . $cur
<input type="text" name="content_currency_id" value="<?php echo $content_currency_id; ?>"><br>
<input type="text" name="content_url" value="<?php echo $content_url; ?>"><br>
<input type="text" name="content_image" value="<?php echo $content_image; ?>"><br>
<input type="text" name="currency_currency" value="<?php echo $currency_currency; ?>"><br>
<input type="text" name="currency_currency" value="<?php echo $currency_tag; ?>"><br>
<input type="text" name="species" id="speciesIncluded" style="display: none;" value="props">
<input type="submit" value="Insert">
</form>