Hello. A question. Immediately I apologize, since I do not understand much in PHP, but I know that these are just a few lines of code. So, I have the simplest admin panel, done the lessons on Youtube. Admin is the most simple, clean sheet and a couple of buttons. There is a database. How can I create 3 fields in the admin panel with color options, for example: Blue, yellow, red, fill them in the admin panel and display it on the site as a drop-down list, while keeping the choice back to the database, but to another table? In HTML, I think it will be like this:
<select> <option value="yellow">Желтый</option> <option value="blue">Синий</option> <option value="red">Красный</option> </select>