01.
<?php
02.
session_start();
03.
header(
"Content-Type: application/vnd.ms-excel"
);
04.
header(
'Content-Disposition: attachment; filename="Store_batch.xls"'
);#export excel file
05.
$data
=
'<html xmlns:x="urn:schemas-microsoft-com:office:excel">'
;
06.
header(
"Pragma: no-cache"
);
07.
header(
"Expires: 0"
);?>
08.
09.
<!doctype html>
10.
<head>
11.
</head>
12.
<body
class
=
"open"
>
13.
<div id=
"right-panel"
class
=
"right-panel"
>
14.
$amt_box
=
$countbatch
; ?>
15.
<?
for
(
$i
=1;
$i
<=
$amt_box
;
$i
++){
16.
echo
"<div style='width: 10%;height:60px;border:1px solid #000;float: left; ' >$Material / $Loca</div>"
;
17.
} ?>
18.
19.
</div>
20.
</body>
21.
</html>