Hey there guys. This is actually my first post. I am having the same problem though. Here is my code:
function upload_excel($file) {
require_once("Excel/excel_reader2.php");
$data = new Spreadsheet_Excel_Reader();
$data->read($file);
$serial_used = array();
$serial_active = array();
$count = 1;
while($data->val($count,'L') != '') {
if ($data->val($count,'L')=='Card is Active') {
array_push($serial_active, $data->val($count,'A'));
}
else
array_push($serial_used, $data->val($count,'A'));
$count++;
}