次のファイルがあるとします。
レイアウト.php
<?php
session_start();
?>
<table width="700" border="1" cellspacing="0" cellpadding="0">
<tr>
<th>Id</th>
<th>Nombre</td>
</tr>
<tr>
<td><?php echo $_SESSION['id']; ?></td>
<td><?php echo $_SESSION['nombre']; ?></td>
</tr>
</table>
そのファイルを PDF としてダウンロードして、ブラウザで表示されるようにファイルを出力する方法はありますか?
私はこれを試しましたが、うまくいきませんでした:
<?php
session_start();
header("Content-type:application/pdf");
header("Content-Disposition:attachment;filename=info_user.pdf");
readfile('layout.php');
?>