php functions to Store data

This commit is contained in:
schrom01
2023-02-14 23:47:03 +01:00
parent 930bd7de4b
commit c3fd986144
2 changed files with 21 additions and 19 deletions
-9
View File
@@ -14,15 +14,6 @@ function read_xls_file($filename){
function write_xlsxFile($filename, $data) {
foreach ($data as $row) {
echo "new Row: <br>";
foreach ($row as $cell) {
echo $cell." ";
}
}
$xlsx = SimpleXLSXGen::fromArray($data);
$xlsx->saveAs($filename);
}