I'm a bit pissed right now... for 2 houres ago my code worked with no problems, but now it's just dead!
Anybody how can find a bug in this:
<?php
ini_set ('error_reporting', E_ALL);
extract($_POST);
$username="user";
$password="pass";
$database="ex_freak";
mysql_connect("localhost",$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query = "INSERT INTO addition_in_queue2 VALUES ('','$title','$category','$description','$author_name','$author_mail','$author_homepage','$vulnerable_systems','$note','','$exploit','$add_name','$add_mail','$add_homepage')";
mysql_query($query);
mysql_close();
?>
It's a add function to a security homepage!
(nothing illegal, with exploits!)