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.

I have an array of data saved in cookie, like this

1:good,2:accelent,3:bad,4:good,fname:Ahmad,lname:Riaz,title:Developer,org:Magiclamp,email:Riaz@khan.com

here i want to save this data in different tables This in one table

1:good,2:accelent,3:bad,4:good

and this in another table

fname:Ahmad,lname:Riaz,title:Developer,org:Magiclamp,email:Riaz@khan.com

how can i solve this problem

share|improve this question
What have you tried so far? – Sirko May 16 '12 at 10:24
Question is already asked stackoverflow.com/questions/10598201/… – spyke May 16 '12 at 10:27

2 Answers

up vote 0 down vote accepted

Read the cookie using $_COOKIE: $cookie_val = $_COOKIE['NAME'];

Split the input using explode(): $cookie_array = explode(",", $cookie_val);

From the result array use the values needed: $cookie_array[0], $cookie_array[1] ...

Clean the values before insertion into the db.

share|improve this answer
<?php
$str = "1:good,2:accelent,3:bad,4:good,fname:Ahmad,lname:Riaz,title:Developer,org:Magiclamp,email:Riaz@khan.com";

$rows = explode(',', $str);

$data['table1'] = $data['table2'] = array();

foreach($rows as $k => $v) {
$a = explode(':', $v);
$data[(is_numeric($a[0]) ? 'table1' : 'table2')][$a[0]] = $a[1];
}

var_dump($data);
?>

That will split the data into two arrays.

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.