I'm using this code to insert some stuff into my table..
$createUser = "INSERT INTO users (username,password,email,website) VALUES ('$username','$password','$email','$website')";
$cu = mysql_query($createUser)or die(mysql_error());
and i get this error
Duplicate entry '0' for key 1
i have an id column set up to AUTO_INCREMENT, so it should be trying to create multiple entries with teh same id.. but i dunno whats going on! thanks