How to fix the error Call-time pass-by-reference has been removed in C:\xampp\php\pear\Spreadsheet\Excel\Writer\Worksheet.php on line 2490 I am getting this error when I am trying to insert user data into excel sheet using php` I used the following code for inserting the data into excel file. Please help me to fix this error.Thanks
<?php
$data = array(
array('', 'Math', 'Literature', 'Science'),
array('John', 24, 54, 38),
array('Mark', 67, 22, 57),
array('Tim', 69, 32, 58),
array('Sarah', 81, 78, 68),
array('Susan', 16, 44, 38),
);
include 'Spreadsheet/Excel/Writer.php';
$excel = new Spreadsheet_Excel_Writer('grades.xls');
// add worksheet
$sheet =& $excel->addWorksheet('Class I');
// add data to worksheet
$rowCount=0;
foreach ($data as $row) {
foreach ($row as $key => $value) {
$sheet->write($rowCount, $key, $value);
}
$rowCount++;
}