Answers for "how to print array in php using print_r function"

PHP
3

print array on php

foreach($results['data'] as $result) {
    echo $result['type'], '<br>';
}
Posted by: Guest on July-27-2020

Browse Popular Code Answers by Language