in reply to Re^2: Need help with pagination
in thread Need help with pagination
So you have a plain syntax error in your code. I'm not sure how that relates to your title of "help with pagination", since pagination doesn't seem to be involved in the syntax error.
Somewhere in your code you have a lone < sign, which Perl interprets as opening a <...> operator.
My suggestion is to start ripping out stuff from the top until the error disappears. Most likely it is a badly quoted HTML string where the double quote is missing a \ before it. A text editor with syntax highlighting might also help indicate the bad string.
You can quickly test if your found the bad string by running
perl -wc C:/xampp/perl/lib/Article.pm
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Need help with pagination
by *alexandre* (Scribe) on Dec 31, 2022 at 11:08 UTC | |
by marto (Cardinal) on Dec 31, 2022 at 11:23 UTC | |
by Corion (Patriarch) on Dec 31, 2022 at 11:14 UTC | |
|