I am getting this PHP error:
PHP Notice: Undefined offset: 1
Here is the PHP code that throws it:
$file_handle = fopen($pa
The ideal solution would be as below. You won't miss the values from 0 to n.
$len=count($data); for($i=0;$i<$len;$i++) echo $data[$i]. "";