Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a form that is populated from a MySQL connection. The from names look like this:

<td><input type="text" name="Time1[]" value="<?php echo htmlentities($row_newNext['Time1'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>

<td><input type="text" name="Time1Out[]" value="<?php echo htmlentities($row_newNext['Time1Out'], ENT_COMPAT, 'utf-8'); ?>" size="32" /></td>

I pass the input arrays to another page, but now I need to combine the array somehow in order to insert them using MySQl. I just can't get the structure right. array_combine doesnt work right and neither does merge. Any help please?

Array from each looks like this:

//first array

Array(
     [0]=>apple
     [1]=>tree
     [2]=>rock
     )

//second array

Array(
     [0]=>foo
     [1]=>banana
     [2]=>orange
     )

I want the arrays to combine into new arrays based on the key. So the new array will be:

Array(
     [0]=>apple
     [1]=>foo
     )

Array(
     [0]=>tree
     [1]=>banana
     )

Array(
     [0]=>rock
     [1]=>orange
     )
share|improve this question
1  
Show us your array and how merge doesn't work. – FreshPrinceOfSO Feb 1 at 20:34

2 Answers

By default, $row_newNext['Time1'] and $row_newNext['Time1Out'] will be returned as strings. You can save them with names Time1 and Time1Out instead of using arrays in the name. Now, if you want to convert them to array based on some delimiter, like a comma, you will have to use explode() on action page of your form.

Then you can do something like this

$time1Arr = explode(',', $_POST['Time1']);
$time1OutArr = explode(',', $_POST['Time1Out']);
$outputArr = array_merge((array)$time1Arr, (array)$time1OutArr);
var_dump($outputArr);

I hope this helps.

share|improve this answer

You can serialize $row_newNext['Time1'] and $row_newNext['Time1Out'] before sending it in form and unserialise() it on the page you recieve your post data or implode() it with some sort of delimiter and explode() it later.

implode()

explode()

serialize()

unserialize()

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.