Link to home
Start Free TrialLog in
Avatar of timshank
timshank

asked on

script help needed

I have the following code inside a postcard script that was given to me, I want the text to come up against a white background, perhaps inside a table w/ a white background. Could you modify this part of the code so it will do that? Thanks in advance!

    print "<b>If the postcard is the way you want it, press the send button.</b>\n";
    print "<b>If you need to make changes, use the back button on your browser.</b>\n";
    print "<b>Please wait a few seconds for the postcard to be sent. Pressing the button more than once</b>\n";
    print "<b>will send additional postcards. During periods of high usage, the system may be</b>\n";
    print "<b>slower than usual. Thanks.</b><br><br>\n\n";
Avatar of ozo
ozo
Flag of United States of America image

#this is more of an HTML wuestion than a Perl question
print '<TABLE><TR><TD BGCOLOR="white"><FONT COLOR="black">';
    print "<b>If the postcard is the way you want it, press the send button.</b>\n";
    print "<b>If you need to make changes, use the back button on your browser.</b>\n";
    print "<b>Please wait a few seconds for the postcard to be sent. Pressing the button more than
   once</b>\n";
    print "<b>will send additional postcards. During periods of high usage, the system may
   be</b>\n";
    print "<b>slower than usual. Thanks.</b><br><br>\n\n";
print '</FONT></TD></TR></TABLE>';
ASKER CERTIFIED SOLUTION
Avatar of tpryor
tpryor

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of timshank
timshank

ASKER

Thank you, I'll try it, I understand the html but I didn't know how to express it inside a perl script.. this is all a learning process for me
thanks, piece of cake
You can find documentation on the print function in
perldoc perlfunc
and documentation on string quoting operators in
perldoc perlop