i have made a test perl script that prints out
a html page and in one frame i wish to
print unicode so it shows the unicode code in the page.
Without the page converting the code back
so the code must remain code .. not hmtl /text..
so the out put will be a webpage that
shows in a table some unicode
i hope you udnerstand what i mean ..
i try this .. but it still prints the unicode as html not as code
#### sample #####
#!/usr/local/bin/perl
print "Content-Type: text/html\n\n";
print <<HTML_A;
<HTML>
<HEAD>
</HEAD>
<BODY BGCOLOR="#FFFFFF">
<CENTER><BR>
here is a sample of the unicode<BR>
<BR>
<TABLE BORDER=1 WIDTH="66%">
<TR>
<TD>
<CENTER>
HTML_A
#### html sample here #####
print "webmaster@mySite.com\n";
#### End html sample #####
print <<HTML_B;
</TD>
</TR>
</TABLE>
<BR>
<BR>
copy and past the code</CENTER>
</BODY>
</HTML>
HTML_B
exit;