Code: Select all
print_r($v_column); echo '<br>';
days
warnings
user_online_time
Code: Select all
print_r($value_a); echo '<br>';
4
0
690
Code: Select all
print_r($row_tmp);echo '<br>';
Code: Select all
print_r($row_tmp[$key_tmp][$v_column]); echo '<br>';
690
**** ทำไม มันมา 690 ฟิลด์เดียว!!! ****
[code=php] foreach ($group_data as $key => $value) {
// print_r($group_data);
foreach ($value as $data_groups) {
// print_r($row_tmp);
foreach ($row_tmp as $key_tmp => $value_tmp) {
foreach ($value_tmp as $data_tmp) {
foreach ($check as $v_column => $value_a) {
//
$column_max_key = 'group_max_'.$v_column;
$column_min_key = 'group_min_'.$v_column;
print_r($row_tmp[$key_tmp][$v_column]); echo '<br>';
}
}
}
}
} [/code]