array('line1'=>'John Smith', 'line2'=>'1000 First Street', 'line3'=>'PO Box 123', 'line4'=>'Anytown, CA 41000'), 2=>array('line1'=>'Bill Gates', 'line2'=>'456 Money Way', 'line4'=>'Seattle, WA 16456'), 3=>array('line1'=>'Steve Jobs', 'line2'=>'1 Inifinite Loop', 'line4'=>'Cupertino, CA 42389')); reset($info); ## just to be sure ########################################################## ## The Av5160 is expecting an array of four values ## array ('line1'=> first line of address label (typically first and last name) ## 'line2'=> second line of address label (typically streeet address) ## 'line3'=> third line of address label (typically PO BOX) ## 'line4'=> fourth line of address label (typically city,state zip) ## ) ## the third line is optional and if it is not present, the class will omit it and ## move the fourth line up on the label ########################################################## ## The CB7-OC is expecting an array of two values ## array ('line1'=> first line of name tag (typically first and last name) ## 'line2'=> second line of nametag (typically duty or title or location) ## ) ## I guess either value could be null if you want it! ########################################################## ## The sign is expecting an array of three values ## array ('line1'=> top line of sign ## 'line2'=> main line of sign ## 'line3'=> bottom line of sign ## ) ## any of the three lines may be left null if desired ########################################################## ## make the labels! its that simple! $label->makeLabel($info); ?>