I'm trying to export a table from PHP in Excel. Everything is fine, but I need to hide some columns, using JQuery, in PHP. When I export the table with hidden colums to Excel, the hidden columns appear with zero values.
This is the code that I'm using:
import_request_variables('P');
$title="Table Results";
$var= "Content-Disposition: attachment; filename=".$title.".xls";
header('Content-type: application/vnd.ms-excel');
header($var);
echo $_POST['tableExcel'];
tableExcel is a form with the table.
Is there a way to not include hidden columns when I export to Excel?
Thank you