nevsi79 Posted March 16, 2008 Share Posted March 16, 2008 Hey guys, I've got the following arrays: Array ( [0] => first name A [1] => first name B [2] => first name C ) Array ( [0] => last name A [1] => last name B [2] => last name C ) Array ( [0] => DOB A [1] => DOB B [2] => DOB C ) how can I put them in mySql db table which basically has the following columns: first name, last name and DOB, I want A (first name A, last name A, DOB A) to be one entry (row) in my table and correspondingly (first name B, last name B, DOB B) next entry (row) and (first name C, last name C, DOB C) another entry (row) Please can anyone help????? Link to comment https://forums.phpfreaks.com/topic/96345-how-to-add-arays-in-mysql-table/ Share on other sites More sharing options...
discomatt Posted March 16, 2008 Share Posted March 16, 2008 <?php $first = array ('matt', 'jim', 'bob'); $last = array ('johnson', 'smith', 'oblaw'); $dob = array ('10/10/10', '15/15/15', '1/2/3'); for ($i = 0; $i < count($first); $i++) $qSet[] = '(\'' . $first[$i] . '\', \'' . $last[$i] . '\', \'' . $dob[$i] . '\')'; $q = 'INSERT INTO `table` (`first`, `last`, `dob`) VALUES ' . implode(', ', $qSet); if (!mysql_query($q) ) echo 'could not add!<br>' . mysql_error(); ?> Link to comment https://forums.phpfreaks.com/topic/96345-how-to-add-arays-in-mysql-table/#findComment-493171 Share on other sites More sharing options...
nevsi79 Posted March 16, 2008 Author Share Posted March 16, 2008 MAGIC!!!!!! SORTED! You're a life saver! Thank you so much! Link to comment https://forums.phpfreaks.com/topic/96345-how-to-add-arays-in-mysql-table/#findComment-493184 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.