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…