My problem:
Got a double array(or whatever is the name of these things) similar to this but a hell of a lot bigger:
$searchset[0]['post_id'] = 20;
$searchset[1]['post_id'] = 40;
$searchset[0]['thread_id'] = 2;
$searchset[1]['thread_id'] = 4;
Need to make that to a normal array, tried this:
$temp = $searchset['post_id']
echo $temp[0];
Should return 20, But that doesn't work
What is the correct syntax to make $temp[0] return 20 in this example?