in reply to How to insert more than one column into Access database table?
It might help to specify the column names in the INSERT query. If you have more columns than the number of values you are inserting, that can cause problems. Try this and specify your column names.
$sqlinsert ="INSERT INTO T_table (Column1, Column2, Column3) VALUES($I +D,$Folder, $Webpage)";
This page contains some good SQL references.
«Rich36»
|
---|
Replies are listed 'Best First'. | |
---|---|
Thanks a lot, Rich36
by Yelenna2003 (Initiate) on Oct 17, 2002 at 01:27 UTC |