I want to print a letter at different printers (the letter has 5 rows) and sent it to many address from a database. Also the address must be situeted in the left corner of the letter.
Each letter must be printed on a single page format A4.
$res1=mysql_query("select * from firm");
while ($row1=mysql_fetch_row($res1)){
echo "DEST: $row1[1]<br>
Address:$row1[2]<br>
LOC: $row1[3]";
<br>
<br>
echo "Dear Sir<br>";
echo "bla bla blljsa " ;
echo "..... ......";
}
help me,
Thank you, Mihaela