Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
<?
$fp = fopen("amit.doc", 'w+');
$str = "<B>This is the text for the word file created through php programming</B>";
fwrite($fp, $str);
fclose($fp);
?>
header("Content-Type: application/vnd.ms-excel");
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 in blue cell bakground</td></tr></table>";
1 to 4 of 4