I got
<meta charset="UTF-8"> on every element.
Update: Ahh okay, I thought maybe I should try setting this for my output once too, and if I do use
print "Content-type: text/html\n\n";
print "<html><head><meta charset=\"UTF-8\"></head>";
print "p_sAction: #" . $p_sAction . "#<br>";
The output is right. But like I said,
this script won't print anything. I think I forgot an important thing:
I got some comparism on this script like the following
if ( $p_sAction eq $aText{'1460'} ){
} else {
}
And this doesn't match. $aText is coming out of my DB where I save data uri-escaped, and return it unescaped.
Update 2:
# Benutzer löschen
print "#$p_sAction# eq #$aText{'1530'}#<br>";
if ( $p_sAction eq $aText{'1530'} ){
print "HELLO WORLD<br>";
}
Output:
#Benutzer löschen# eq #Benutzer löschen#
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.