Ciao a tutti,

io ho una domanda da fare. Io ho fatto un file in cui esporto i dati da PHP a MS Word. Riporto il file:

codice:
<?

header("Content-type: application/msword");
header("Content-Disposition: attachment;Filename=filename.doc");

echo "\n\n\n";

echo "\t\t\t\t\t\t\t Spett.\n";
echo "\t\t\t\t\t\t\t DITTA XXXXXXXX \n";     			
echo "\t\t\t\t\t\t\t Via XXXXXXXXXX \n";    	   	 

[......]

?>

Le mie domande sono le seguenti:

- come faccio ad impostare , ad esempio, Arial come font?
- come faccio a fare una parola in grassetto?
- come faccio ad impostare un size per il font ?


Grazie a tutti per l'aiuto.