Please correct the multidimensiona l array "a" below -->
Code:
<html>
<body>
<?php
$input = explode(" ", $_POST['input']);
$row = $input[0];
$col = $input[1];
$k=2;
$a = array();
for($i=0; $i<$row; $i++) {
for($j=0; $i<$col; $i++) {
$a[$i][$j] = $input[$k];
$k++;
}
}
Comment