I'm new to perl and I've mainly worked with php in the past,
usually to check if a get variable is equal to something and then do something else if it is, i'd simply do
if ($_GET['page'] == 'news') {
echo 'yessss';
}
but I'm not really sure what to do with perl :$ could anyone help me out? :)
Thanks!
eq- try that in place of == (which is for numbers) :) – marnir Sep 11 '11 at 21:56if ($fdat{page} eq 'news') {}. Catalyst would be similar to CGI.pm ($c->req->param('page')) – DVK Sep 12 '11 at 9:53