added section selection

This commit is contained in:
2025-06-10 14:02:43 +02:00
parent 74fd234d87
commit ffa471eca6
2 changed files with 9 additions and 1 deletions
+3 -1
View File
@@ -19,6 +19,8 @@ $content_currency_id = $_POST["content_currency_id"];
$content_url = $_POST["content_url"]; $content_url = $_POST["content_url"];
$content_image = $_POST["content_image"]; $content_image = $_POST["content_image"];
$section = $_POST["section"];
$currency_currency = $_POST["currency_currency"]; $currency_currency = $_POST["currency_currency"];
$creator; $creator;
@@ -54,7 +56,7 @@ if ($contentResult->num_rows == 0) {
,'" . $content_url . "' ,'" . $content_url . "'
,'" . $content_image . "' ,'" . $content_image . "'
, false , false
, 1)"); , " . $section . ")");
+6
View File
@@ -138,6 +138,12 @@ echo '<br><span style="font-family: consolas">Currency Code </span>' . $cur
<body> <body>
<div class="main"> <div class="main">
<form action="insert-jinxxy.php" class="insert" method="post"> <form action="insert-jinxxy.php" class="insert" method="post">
<select name="section" id="section">
<option value="1">Assets</option>
<option value="2">Avatars</option>
<option value="3">Bases</option>
<option value="4">Worlds</option>
</select>
<div> <div>
<?php <?php
$furatalog = new mysqli("localhost", "furatalog_admin_usr", "NR6tLk7c56bPT5[]", "furatalog"); $furatalog = new mysqli("localhost", "furatalog_admin_usr", "NR6tLk7c56bPT5[]", "furatalog");