please i need your help

wavex159

Newbie
Joined
Mar 6, 2015
Messages
8
Reaction score
0
Good day please i just wanted to know if some can help me write a php script that takes data from a big from(e.g a select of numbers, one set of numers e.g-3456789 per line or they can be comma seperated) and uses them to form an array that i can perform an operation on such as me displaying them.
Please i would really appreciate your help.
 
This should get you started:
Code:
<?php
$file = fopen('myFile.csv', 'r');
$array = array();
while (($line = fgetcsv($file)) !== FALSE) {
  $array[] = $line;
}
fclose($file);
?>
 
Back
Top