skip to Main Content

PHP XLS Reader is writing extra columns

I Have a function that reads a xls on php, transforms it, and returns it in csv, heres the html <!DOCTYPE html> <html> <head> <title>Import</title> </head> <body> <h1>File upload</h1> <form method="POST" action="process.php" enctype="multipart/form-data"> <label>File</label> <input type="file" name="arquivo"><br><br> <input type="submit" value="send">…

VIEW QUESTION

Create date range report column using codeigniter 3 excel – Mysql

I want to create export file date-range report using ci. views.php <div class="form-group row"> <label for="attn_date" class="col-sm-4 col-form-label">From</label> <div class="col-sm-8"> <input type="date" class="form-control" id="attn_from" name="attn_from"> <?= form_error('attn_from'); ?> </div> </div> <div class="form-group row"> <label for="attn_date" class="col-sm-4 col-form-label">To</label> <div class="col-sm-8"> <input…

VIEW QUESTION
Back To Top
Search