At the beginning, Like I said, if I use
if (!defined($cgi->cookie('name')))
I don't get any errors, It just doesn't work. when I tryed
if (defined($cgi->cookie('name')))
I keep geting a 500 internal server error. The script won't run.
I know that the ! means not defined. But thats not what I want. I want to is if one of 3 is defined and then do some thing.
I have to make changes so I could get this script running, its just not running the way I want.