Jason Wong wrote:
On Saturday 04 January 2003 11:00, Leif K-Brooks wrote:
But it shouldn't get to the database insert because of the redirectAs you have already found out, the code _does_ continue to execute after the header() redirect.
either... I only added the die; when it still inserted with the redirect.
Try this:
if (not_lowercase) {
insert_into_db();
header();
die();
}
-- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law.

