The problem I am having is the info that is being added to the database is the info that is being filled out on a form. I am not going directly into the database and doing it myself, it is being done automatically through my form.
I have 23 columns in my table, that is including my auto_incrementing id. And I have 23 fields in my form, including on hidden field for my auto_incrementing id.
This is the code in my PHP file for my text fields:
<div class="formHeader" id="formLeft">Title:</div>
<div id="formRight">
<input name="title" type="text"
value="<?php echo $delmar->title; ?>" size="40" maxlength="150">
</div>
This is the code in my PHP file for my hidden field:
<input name="id" type="hidden" id="id"
value="<?php echo $delmar->id; ?>">
Let me know if you need anymore info.
Thanks a lot for your help!!!