I'm using bignosebird form script (perl)for an order form. I've included a simple javascript print script in the
HTML section of the Thankyou page (which fills in the details of the order for the punter..I want them to be able to print it ...see below...Now here's the wierdness..
the page prints fine on a pc but not on a Mac...anyone got any clues??
Regards emmdee
>>>...............sample script......
sub thank_you
{
print "Content-type: text/html\n\n";
print <<__W2__;
<BODY BGCOLOR="FFFFCC"><CENTER>
<TABLE WIDTH=550 BORDER=1>
<TR >
<TD align ="center">
<b>
<H1>THANK YOU FOR YOUR ORDER!</H1>
Your information has been sent and will be processed as soon as possible.<br>
Click
<a href='javascript:;' onClick='window.print();return false'>HERE</a> to Print.
<BR>
Here is the information you provided:<BR>
__W2__foreach $itm (@sortlist) {
.....................etc etc ......
HTML section of the Thankyou page (which fills in the details of the order for the punter..I want them to be able to print it ...see below...Now here's the wierdness..
the page prints fine on a pc but not on a Mac...anyone got any clues??
Regards emmdee
>>>...............sample script......
sub thank_you
{
print "Content-type: text/html\n\n";
print <<__W2__;
<BODY BGCOLOR="FFFFCC"><CENTER>
<TABLE WIDTH=550 BORDER=1>
<TR >
<TD align ="center">
<b>
<H1>THANK YOU FOR YOUR ORDER!</H1>
Your information has been sent and will be processed as soon as possible.<br>
Click
<a href='javascript:;' onClick='window.print();return false'>HERE</a> to Print.
<BR>
Here is the information you provided:<BR>
__W2__foreach $itm (@sortlist) {
.....................etc etc ......