I am working on this project. This is my first major jump into PERL. I learned some PERL on my own, but this particular use of PERL is different for me. I am getting an error on this line in particular. It says its a bareword error. Does anyone know how I could fix this?
foreach $_ (@paws_output) {
if (/*Your Campus ID and/or Pin is invalid.*/) {
&print_cgi_error('Invalid Student ID/PIN number');
exit;
}
I get the error at the boldened line above. Any help is appreciated.
foreach $_ (@paws_output) {
if (/*Your Campus ID and/or Pin is invalid.*/) {
&print_cgi_error('Invalid Student ID/PIN number');
exit;
}
I get the error at the boldened line above. Any help is appreciated.