Re: perl6::form simple reporting

2007-02-20 Thread Daniel Kasak
Ken Foskey wrote: > I have a script that takes an sql and formats into a report, simple > stuff. > > I have a product that when it changes I want a sub heading. I have > coded this. > > if( $prior_product ne $sql_product ) { > print form... > $prior_product = $sql_product; > } > > Is there

perl6::form simple reporting

2007-02-13 Thread Ken Foskey
I have a script that takes an sql and formats into a report, simple stuff. I have a product that when it changes I want a sub heading. I have coded this. if( $prior_product ne $sql_product ) { print form... $prior_product = $sql_product; } Is there a better way to code this sort of rep