Thats the script. what could be wrong?
$ip=$_GET['ip'];
$user=$_GET['user'];
$forum=$_GET['forum'];
$type=$_GET['type'];
$connect = mysql_connect("localhost", "*****", "****") or die(mysql_error());
$db = mysql_select_db('krrose27_rsb', $connect);
$SQL = "INSERT into rsb_reported(rsb_ip, rsb_user, rsb_forum, rsb_type) VALUES ('$ip', '$user', '$forum', '$type')" ;
mysql_query($SQL) or die(mysql_error());