Hey, I'm trying to add data from a drop down menu into my database... But What I did does not work.
<?php
if(isset($_POST['save']))
{
$itemn = $_POST['itemn'];
$realm = $_POST["realm"];
if(!get_magic_quotes_gpc())
{
$itemn = addslashes($itemn);
}
$query = " INSERT...