before I begin thanks for taking the time to help me out.
> print
>     header(),
>         start_html( 'This page has no title' ),
>             gen_table( '%Ave%' ),
>         end_html();
>
>
> sub gen_table {
>
>     my $search = shift;
>
>     # define table heading
>     my @rows    = th( [ 'id no.', 'street no.', 'street name', 'city' ] );
>
>     # load 1 street per row
>     push @rows, td( $_ ) foreach @{ query_data( $search ) };
>
code wise I follow everything that you do up to the line above. it seems
your doing the same thing however you've just truncated the code. the script
runs however the table does not print beyond the header. unfortunately i'm
having some problems writing in a check to verify the data is imported.
could you include the longer version of teh above code that I coudl
understand a bit mroe whats happening.


>     # produce table
>     return
>         table( {    -border => 0,
>                     -width  => '25%' },
>
>             caption( b( 'Wow. I can multiply!' ) ),
>             Tr( [EMAIL PROTECTED] ),
>         );
> }
>
>
> HTH,
>
> Charles K. Clarkson
> -- 
> Head Bottle Washer,
> Clarkson Energy Homes, Inc.
> Mobile Home Specialists
> 254 968-8328
>


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to