RE: [PHP] Output data repeatedly more than once

2003-10-01 Thread esctoday.com | Wouter van Vliet
nt to run the script multiple times. Do like this: Hope it helps ! Wouter -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 1:24 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Output data repeatedly more than once On Tuesday 30 September 2003

Re: [PHP] Output data repeatedly more than once

2003-09-30 Thread Jason Wong
On Tuesday 30 September 2003 18:59, Marek Kilimajer wrote: > Yes, you can. But would not it be smarter to increase the number of > copies in the print dialog? But that would be environmentally unfriendly because it uses more paper ;-) -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open

RE: [PHP] Output data repeatedly more than once

2003-09-30 Thread Jay Blanchard
[snip] My question is, is it possible to output the receipt information more than once on a single page (Browser) as I would need to print out the receipt thrice for the different department as required. [/snip] wrap the output in a for loop for($i = 0; $i < 3; $i++){ output receipt }

Re: [PHP] Output data repeatedly more than once

2003-09-30 Thread Marek Kilimajer
Yes, you can. But would not it be smarter to increase the number of copies in the print dialog? [EMAIL PROTECTED] wrote: Hi all, I am creating a simple receipt system whereby user will enter relevant info via a text form and using echo method to output and print the receipt data. I've

[PHP] Output data repeatedly more than once

2003-09-30 Thread irinchiang
Hi all, I am creating a simple receipt system whereby user will enter relevant info via a text form and using echo method to output and print the receipt data. I've used CSS as the front-end . My question is, is it possible to output the receipt information more than once on a single p