<?php
 session_start();
 $nome=$_SESSION['nome'];
 session_destroy();
 header("location: index.php?par=1&nome=$nome");
 
?>