Posts by Leonardo Michelotti • 1 point
1 post
-
-1
votes2
answers235
viewsQ: Matrix 3x3 in PHP, how to show only the elements of the tips
would like to know if there is any specific condition for me to print only the elements of the matrix tip(1,5,13,17). <?php $matriz = [ [1,3,5],//1 [7,9,11],//0,2 [13,15,17]//1 ]; for($l=0;…