Gossamer Forum
Home : Products : DBMan : Customization :

print subroutines in html.pl

Quote Reply
print subroutines in html.pl
Hello, please can someone help.
Where is my fault ?
I want to print out subroutines in cells of a table and get the number "1" printed after the subroutine. But I haven't set a command for printing the "1". Here is my code:
-----------------------
print qq|
<table WIDTH="475" CELLPADDING=0 CELLSPACING=0 BORDER=0>
<tr><td>
|;
print &html_search_options ;
print &html_footer;
print qq|
</td><td>
|;
print &html_record_form();
print qq|
</td></tr>
</table>
|;
----------------------
regards, godie
Quote Reply
Re: print subroutines in html.pl In reply to
try this:
Code:
print qq|
<table WIDTH="475" CELLPADDING=0 CELLSPACING=0 BORDER=0>
<tr><td>
|;
&html_search_options;
&html_footer;
print qq|
</td><td>
|;
&html_record_form();
print qq|
</td></tr>
</table>
|;
Hope this helps.
---------
Mart
Quote Reply
Re: print subroutines in html.pl In reply to
Thank you very much Mart,
that's it. It's now 1:52 past midnight in germany and I can go sleeping, cause one of my small problems is now fixed.
good night.