ok, i'm getting no php errors but its not inserting heres my code..
$showno = $GET['id'];
if (empty($POST['firstname'])) {
$fn = FALSE;
$message .= '<p>You forgot to enter your first name!</p>';
} else {
$fn = $_POST['firstname'];
}
if ($fn) {
require_once ('mysql_connect.php');
$query = "INSERT INTO tab (firstname, showno) VALUES ('$fn', '$showno')";
$result = @ ($query);
thanks alot