Bir Word belgesine bir PHP sayfası verileri ihraç ama başlık tüm sayfalarda mevcut değildir.
Kafa Word belgesinin diğer sayfalarında ilk sayfada mevcut değil ama.
İşte benim kod,
function changeDetails()
{
$bType = $this->input->post('textvalue');
if ($bType == "word")
{
$this->load->library('table');
$data['countrytoword'] = $this->AddEditmodel1->export();
$this->table->set_heading('Name','Country','State','Town');
$out = $this->table->generate($data['countrytoword']);
header("Content-Type: application/vnd.ms-word");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-disposition: attachment; filename=$cur_date.doc");
echo '<br><br>';
echo '<strong>CountryList</strong><br><br>';
print_r($out);
}
}
<? if(isset($countrytoword)) { ?>
<table align="center" border="0">
<tr>
<td>Name</td>
<td>Country</td>
<td>State</td>
<td>Town</td>
</tr>
<? foreach($countrytoword as $dsasffd) { ?>
<tr>
<td><?= $dsasffd['dbName'] ?></td>
<td><?= $dsasffd['dbCountry']; ?></td>
<td><?= $dsasffd['dbState']; ?></td>
<td><?= $dsasffd['dbTown']; ?></td>
<? } } ?>
</tr>
</table>