14 lines
245 B
PHP
14 lines
245 B
PHP
|
|
<?
|
||
|
|
include ("config.php");
|
||
|
|
|
||
|
|
//destroys the session, the variables are not longer set
|
||
|
|
session_start();
|
||
|
|
session_destroy();
|
||
|
|
|
||
|
|
?>
|
||
|
|
<html>
|
||
|
|
<meta http-equiv="refresh" content="0;url=http://www<?php echo $domain; ?>">
|
||
|
|
</html>
|
||
|
|
|
||
|
|
|