I have a product array that is coming from a database.
I just want to print all the variables that are called [sku] inside that said array.
If I print it out like this
<?php echo $products[0]['sku']; ?>
I get only the 1-st value of SKU
how can i display all of the SKU variables without going [0] , [1] , [2] and so on.