9 lines
96 B
PHP
9 lines
96 B
PHP
<?php
|
|
function terminate($message="")
|
|
{
|
|
print "$message\n";
|
|
footer();
|
|
exit(1);
|
|
}
|
|
?>
|