Thanks everyone who replied,
What I was doing was quite simple, and I know what was going wrong.

I WAS using...

print "Content-type: text/html\n\n";
if (condition) {
 print "Location:page.html\n\n";
 } else {
 print "...html...";
 }
}

Whereas I SHOULD have used...

if (condition) {
 print "Location:page.html\n\n";
 } else {
 print "Content-type: text/html\n\n";
 print "...html...";
 }
}

Everythings cool now, Thanks!

Carl
www.fireartist.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to