Sorry I did mean columns, and when omitting the AI column in the example I gave would it not place the value for $username into the first available column?
I am still learning as well, so just trying to understand myself.
would you need to do something like :
$query = "INSERT INTO act VALUES(a='$a',b='$b',c='$c')";
$result=mysql_query($query)
or
$query = "INSERT INTO act (column_a, column_b, column_c,) VALUES (value_a, value_b, value_c, )";
$result=mysql_query($query)
would both of those work? I guess I can just test them myself and see, but which is best measure to use in your work?