This is a common problem for people with a PHP background attempting to code in Perl.
The philosophy in PHP was to pack as much functionality into the core as possible. Given that it was designed pretty much exclusively as a web application language, there is plenty of support for HTML / HTTP, etc type functionality such as the htmlentities() function. This worked pretty well for PHP, since it meant once it was installed on a webserver, you had most of the tools you needed to write basic web apps.
As Perl is a much more general purpose language, it doesn't make sense to include such functionality in the core. But that doesn't mean it doesn't exist. There is a
huge amount of this functionality (and much much more) on
CPAN.
However, many PHP programmers might search the core docs of Perl, find that an equivelent function isn't there, and assume it must not exist. Once you get used to looking at CPAN for a solution, you start to realise the full potential of Perl.
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.