yes lol, i messed up my mistake,
my hypothesis:
i dont think u should use it this way
@outcome = mysql_query("INSERT.......");
u should make it like this
$connection = @mysql_connect($host, $username, $password)
$sql = "INSERT bla bla bla...";
result = mysql_query($sql, $connection);
/*u have to make mysql query to sql and connection, or else u get errors
*\
oh btw, u know when u make a db.php, or connect.php in this case, it didn't work forme, whenever i type
include 'db.php';
it doesn't connect it messes up, so try putting all that information inside the script...