Here is what i have, i dont know why it wont work. I dont get any errors when i click submit.
<form name="user_status" method="POST">
<select name="Usr_Status">
<option value="active">Active</option>
<option value="inactive">Inactive</option>
<?php
$usr_status = isset($_POST) ? $_POST : 'active';
$sql='INSERT INTO '.TICKET_MESSAGE_TABLE.' SET created=NOW() '.
',user_status='.db_input($usr_status).
$qry = mysql_query($sql);
?>
<input class="button" type="submit" value="user_status">
</form>
Im going to add more options after i get it working. Can any one help me with my code and point out any issues?
Thanks