I am working on a perl script, and using a command I have used many times before... but it is reacting different this time and I do not know why! I want to redirect to a different URL, and I use this command:
if ($IN->param('select') =~ 'Word') {
print "Location: [mydomain.com...]
}
Rather than returning the page I specify, I get a blank white page with his as text:
Location: [mydomain.com...]
And, yes, the actual URL does work!
So why is it not working?
Dave