Where you have:
$queryreg = mysql_query("
INSERT INTO users VALUES ('','$firstname','$lastname','$username','$password','$email','$date','$random','0',)
");
Check the table names that are matching up with these values you are submitting:
$queryreg = mysql_query("INSERT INTO users (firstname,lastname,username,password,email,date,random) VALUES ('$firstname','$lastname','$username','$password','$email','$date','$random')") or die(mysql_error());
Also check here:
http://bgallz.org/24/using-php-with-email-activation/