Could you help me guys how to make an html table from this array. I don't know php much. I have searched the net and find that I must use a foreach loop but the arrays I found have different form.
$a = array(
1 => 1,
2 => 2,
3 => 3,
4 => 4,
);
$c = array(
1 => array(
    'tutył' => 'treść1'
    'kol1' => '11'
    'kol2' => '00'
    'kol3' => '22'
    )
2 => array(
    'tutył' => 'treść2'
    'kol1' => '12'
    'kol2' => '10'
    'kol3' => '23'
    )
2 => array(
    'tutył' => 'treść3'
    'kol1' => '1'
    'kol2' => '2'
    'kol3' => '3'
    )
2 => array(
    'tutył' => 'treść4'
    'kol1' => '1'
    'kol2' => '2'
    'kol3' => '3'
    )
);
Could you help me with this problem ?
 
     
     
    