Ppt

Hello,

I am using PHP to create ppt. Below is the code, if i the content exceeds i want to add new slide, how to do it? I do not want to use COM as it takes time to create the ppt

header(“Content-Type: application/vnd.ms-powerpoint”);

print “<table border=\“1\”>
<tr>
<td><b>field1</b></td>
<td><b>field2</b></td>
</tr>”;

print “<tr>
<td>value1 </td>
<td bgcolor=\”#137799\">value2 <span class=\“posthilit\”>in</span> blue cell bakground</td>
</tr>

</table>";

Thanks

Have you looked at PHPPowerPoint ?

Thanks.

But when i run i get only pptx format. I want ppt format. Can you please tell me how to do this, i tried to change th file format,

$objWriter->save(str_replace(‘.php’, ‘.pptx’, FILE));

to

$objWriter->save(str_replace(‘.php’, ‘.ppt’, FILE));

with no effect.

True. The class can only do pptx, not ppt AFAIK. Sorry.