How do I kill a script? I don't want to put the whole thing in an if statement and I don't want to to do a redirect.
if ($horrible_things_are_going_to_happen) {
kill_the_whole_script();
}
// nothing below here will happen if the above statement was true.