ok, i got "Column count doesn't match value count at row 1"
so i guess this is cause of there were already entries before adding the id column
for luck they are only two and i decided to delete them
i executed
$query="DELETE FROM movies
WHERE title='title test'";
mysql_query($query) or die (mysql_error());
echo mysql_query($query);
and
$query="DELETE FROM movies
WHERE title='testing2'";
mysql_query($query) or die (mysql_error());
echo mysql_query($query);
for the second entry
i got "1" as output of echo mysql_query($query);
but still getting the same error when try to insert new entries
and infact i got 1 everytime i execute the code.....