[Solved] How to show all arrays without numbers etc


This is nothing related to PDO. You might wanna do this:

for ($i = 0; $i < count($tijdlijn); $i++)
  print_r ($tijdlijn[$i]['bericht']);

Or in a better way:

foreach ($tijdlijn as $tijd)
  print_r ($tijd['bericht']);

0

solved How to show all arrays without numbers etc