Hello php newbie here
I have a openinexcel.php file which basically starts a session then I have...
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=IPOfficeConfig.xls")
then I have
echo $_SESSION['var'];
//where var is what I want to output I want to in Excel format.
?>
this works for opening up the output as an excel file but I would also like to give the user the option to click a link and get an email message popup with the address already populated and the excel output as an attached file.
Is that possible? What would I need to do?
I have a openinexcel.php file which basically starts a session then I have...
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=IPOfficeConfig.xls")
then I have
echo $_SESSION['var'];
//where var is what I want to output I want to in Excel format.
?>
this works for opening up the output as an excel file but I would also like to give the user the option to click a link and get an email message popup with the address already populated and the excel output as an attached file.
Is that possible? What would I need to do?