Search found 1 match

by siggo
Sun Jul 27, 2008 11:07 pm
Forum: PHP - Code
Topic: Color fonts creating word doc using PHP
Replies: 0
Views: 174

Color fonts creating word doc using PHP

does anyone know how to set the font color when creating a word document using PHP??? I've been looking for days.... $word = new COM("word.application") or die("Unable to instantiate Word"); $word->Documents->Open($template_file); $word->Selection->Font->Bold = "1"; $wo...