<?php
$conn = mysqli_connect('localhost','u891914234_matrix','Matrix@25#','u891914234_matrix');
// if($conn){
// 	echo "connect";
// }
// else{
// 	echo "error";
// }
    if(isset($_GET['logout'])){
    	session_start();
    	session_destroy();
    	header("location:index.html");
    }
?>