ainoy31 Posted June 18, 2008 Share Posted June 18, 2008 Hello- Either it is too late or I can not think straight. I need help inserting data from an array into mysql DB. My table fields are: part_id catcode year make model submodel engtype liter fuel fueldel asp engvin engdesg dciptdescr exppartno expldescr vqdescr fndescr my sample arrays are: Array ( [0] => CRW [1] => 2007 [2] => CADILLAC [3] => ESCALADE [4] => [5] => V8 [6] => 6.2 [7] => GAS [8] => FI [9] => N [10] => 8 [11] => L92 [12] => Grille Insert [13] => 37012 [14] => Billet Aluminum Grille; CNC Machined; Marque-Mesh;No Cutting; Polished; [15] => [16] => ) Array ( [1] => CRW [1] => 2008 [2] => CADILLAC [3] => ESCALADE [4] => [5] => V8 [6] => 6.2 [7] => GAS [8] => FI [9] => N [10] => 8 [11] => L92 [12] => Grille Insert [13] => 37012 [14] => Billet Aluminum Grille; CNC Machined; Marque-Mesh;No Cutting; Polished; [15] => [16] => ) Should I use a foreach($array as $key => $value) or use a for loop and count the num of elements in my array and use it as a counter like: $num = count($array); for($x=0; $x<$num; $x++) { } It just getting confusing to me. Much appreciation. Link to comment https://forums.phpfreaks.com/topic/110707-solved-insert-array-data-into-db/ Share on other sites More sharing options...
fenway Posted June 18, 2008 Share Posted June 18, 2008 Assuming you know the order of your array, you can simply used a multi-valued insert statement. Link to comment https://forums.phpfreaks.com/topic/110707-solved-insert-array-data-into-db/#findComment-568149 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.