Jump to content

[SOLVED] inserting without knowing the table structure


jakebur01

Recommended Posts

The table was created based on the number of columns the text file had in it and they were generated based on that flat file. ie. col1, col2, col3, col4, etc.  On page 2 I select which columns contain which like list, dealer, distributor and so on.

 

INSERT INTO {$tablename} VALUES $part = $itemnum, $list = '{$row[$list]}', $dealer = '{$row[$dealer]}', $distributor = '{$row[$distributor]}', 				$sort = '{$row[$sort]}', $stdpack = '{$row[$stdpack]}'

I am wanting to insert the list, dealer, distributor, sort, and stdpack values into the appropriate columns. As you can see, I have those columns stored in variables ($part, $list, $dealer, $sort, & $stdpack).

 

How can I get this done and still take care of the columns I don't know about that are in the table?

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.