########################################################### # BBS_HTML_READ_MESSAGE.PL # # This script was written by Gunther Birznieks. # Date Created: 4-18-96 # # You may copy this under the terms of the GNU General Public # License or the Artistic License which is distributed with # copies of Perl v5.x for UNIX. # # Purpose: # Print out the HTML for the Read Message Screen # ############################################################ # Hidden fields need to get passed from screen to screen $print_hidden_fields = &HiddenFields; print <<__ENDOFHTML__; Reading Messages
Name: $poster_firstname $poster_lastname
E-Mail: $poster_email
Date/Time: $post_date_time
Subject: $post_subject
Body:
$post_message
Replies: $print_hidden_fields
$post_replies
$post_attach_html

__ENDOFHTML__ 1;