I have a table with an auto_increment value. And I want to add a record but how do I choose what fields goes where, and how does PHP know what field are just going to be incremented by MSQL?
I guess it will be something like
$query = "insert into arrangement values('".$aBy."', '".$aDato."','".$aNavn."','".$aInfo."','".$aStort."')";
But before aBy I have a field called aArrID that will be autoincremented....what does the syntax look like then?
