Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Able to see a variable in print_r()'s output, but not sure how to access it in code

Can I store an array in a variable?

I have this array:

$_POST['product']

and when I print it:

echo "<PRE>";
print_r($_POST['product']);
echo "</PRE>";

the result is:

<PRE>Array
(
    [0] => Array
        (
            [0] => 1
            [1] => cola
            [2] => wwww
            [3] => 1
            [4] => 2.00
            [5] => 0.00
            [6] => 2.00

        )

)
</PRE>

How can I store the value of the array in a variable? For example, I need to insert [1] => cola into the table in the database.

share|improve this question
2  
Can you just... make it clearer? Are you talking about $_POST['product'][0][1]? – Alvin Wong Nov 10 '12 at 16:07

marked as duplicate by hakre, kiamlaluno, krock, mu is too short, cHao Nov 11 '12 at 6:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 0 down vote accepted

You can access the array like $_POST['product'][0][1] to get the value of cola.

For multiple inserting to database you should use foreach loop or for loop.

UPDATED

Alright, Foreach Loop

foreach($_POST['product'] as $product) {
   mysql_query("INSERT INTO YOURTABLENAME('FIELD1','FIELD2'....) VALUES('".$product[0]."','".$product[1]."'....)"); 

}

I prefered to use for loop .

$count_array = count($_POST['product']);
for($i=0; $i>= $count_array; $i++){
   mysql_query("INSERT INTO YOURTABLENAME('FIELD1','FIELD2'....) VALUES('".$_POST['product'][$i]."','".$_POST['product'][$i]."'....)"); 
}

THere is also an optimize way for inserting in the database by avoiding the insert sql inside the for/foreach loop.. But for now that should work for you.. :)

share|improve this answer
can you get me example plze – Zamalkawy ana Nov 10 '12 at 16:51
Remember to sanitize your inputs!!!1!11one Use mysql_real_escape_string(), PDO, or some other method. – Andrew M Nov 11 '12 at 6:53

You must use a foreach loop to "scan" the array and send an INSERT query to your database, like this :

<?php
$updateStmt = $pdo->prepare("INSERT INTO table (field) VALUES (:FIELD)");
foreach( $_POST['product'] as $key => $val ){
    $updateStmt->execute(array(
        ':FIELD' => $val
    ));
}
?>
share|improve this answer
if(!empty($_POST['product'])) {
    $colaVar = $_POST['product'][0][1];
    echo $colaVar; // outputs'cola'
}
share|improve this answer

You don't need that at all, just do the following:

$arr = $_POST['product']
echo $arr[0][1]

This is the normal way to access arrays values to do anything you want.

share|improve this answer
1  
You don't need that at all, just do the following: echo $_POST['product'][0][1] – Alvin Wong Nov 10 '12 at 16:14
@AlvinWong Well you are more right but in the case of he does not want to process or change the value of the key! – sємsєм Nov 10 '12 at 16:21
1  
ok thank you for every one – Zamalkawy ana Nov 10 '12 at 16:38
but i insert multi array on one process what can i do ?? – Zamalkawy ana Nov 10 '12 at 16:50
@Zamalkawyana looping through the array is the solution – sємsєм Nov 10 '12 at 16:51
show 3 more comments

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