We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm trying to write at the end of a file without deleting the last one . Is it possible ?
Thank you
The text was updated successfully, but these errors were encountered:
Hi, What do you mean by deleting the last one ?
Sorry, something went wrong.
Is it possible to add content to an existing file ? Because when I use the function "writeToFile", it crush my file with the same name :
`<?php require_once DIR . '/vendor/autoload.php';
$header = [ 'nom' => 'string', 'prenom' => 'string', 'telephone' => 'string', 'email' => 'string', ];
$wExcel = new Ellumilel\ExcelWriter(); $wExcel->writeSheetHeader('Sheet1', $header); $wExcel->setAuthor('Your name here'); $wExcel->writeSheetRow('Sheet1', [ $_POST['firstname'], $_POST['lastname'], $_POST['tel'], $_POST['mail'],
]);
$wExcel->writeToFile("example.xlsx"); header("location:". $_SERVER['HTTP_REFERER']); `
No branches or pull requests
Hi,
I'm trying to write at the end of a file without deleting the last one . Is it possible ?
Thank you
The text was updated successfully, but these errors were encountered: