logout.php
Codice PHP:
<?php
session_start();
require_once('Users.class.php');
$login = New Users;
$login->logout();
?>
index.htm
codice:
<?php
session_start();
require_once('Users.class.php');
$login = New Users;
$login->access_denied();
?>
<html>
<head>
<title>GUIDA PLUGIN VLC</title>
<style type="text/css">
/* codice utilizzato per l'animazione dei vari bottoni */
#pulsante
{
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
font: bold 12px Arial, Helvetica, sans-serif;
color: #000;
padding: 10px 20px;
border: solid 1px #0076a3;
background: #ffffff;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
}
#pulsante:active
{
position: relative;
top: 1px;
}
#pulsante:hover {
background: #0095cd;
background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
background: -webkit-linear-gradient(top, #0078a5, #00adee);
background: -moz-linear-gradient(top, #0078a5, #00adee);
background: -ms-linear-gradient(top, #0078a5, #00adee);
background: -o-linear-gradient(top, #0078a5, #00adee);
background: linear-gradient(top, #0078a5, #00adee);
}
</style>
</head>
<body bgcolor="#DDDDDD">
<div align="right">
<form name="logout" action="logout.php" method="post">
<input type="hidden" name="logout" value="esci"/>
<input type="submit" value="Disconnetti"/>
</form>
</div>
<p align="center"> <!--- METTO TUTTO AL CENTRO DELLA PAGINA ---->
<img src="http://i.imgur.com/hxvbojK.png">
<br><br>
<img src="http://www.gifanimate.com/data/media/159/pallacanestro-immagine-animata-0102.gif" width="100" height="100">
<b>Guida per l'istallazione del PLUGIN VLC WEB</b>
<img src="http://www.megghy.com/gif_animate/sport/calcio/32.gif" width="100" height="100">
<br><br><br>
<img src="http://images.videolan.org/images/goodies/Cone-Video-large.png" width="100" height="100">
<br><br><br><br>
<b>SCEGLI IL BROWSER UTILIZZATO :</b>
<br><br><br>
<button id="pulsante" title="GUIDA PER IL BROWSER MOZILLA" onclick="location.href='http://allypage.net23.net/Firefox%20guida%20VLC%20PLUGIN.htm'">
<img src="https://people.mozilla.com/~dolske/apng/spinfox.gif" width="50" height="50">
<br>
<b>Mozilla</b>
<br>
<b>Firefox</b>
</button>
<!----- QUESTO è UTILIZZATO PER LASCIARE SPAZIO FRA UN BOTTONE E L'ALTRO. PER FAR PIU SPAZIO AGGIUNGERE ALTRI ---->
<button id="pulsante" title="GUIDA PER IL BROWSER GOOGLE CHROME" onclick="location.href='http://allypage.net23.net/Google%20Chrome%20guida%20VLC%20PLUGIN.htm'">
<img src="http://1.bp.blogspot.com/-IrFxnmbAyQI/TevLZHQfDWI/AAAAAAAAAzY/bmIqMi6uUAQ/s1600/google-chrome.gif" width="50" height="50">
<br>
<b>Google</b>
<br>
<b>Chrome</b>
</button>
<button id="pulsante" title="GUIDA PER IL BROWSER INTERNET EXPLORER" onclick="location.href='http://allypage.net23.net/Internet%20Explorer%20guida%20VLC%20PLUGIN.htm'">
<img src="http://www.gifmania.co.uk/Technology-Animated-Gifs/Animated-Computing/Microsoft/Internet-Explorer/Internet-Explorer-Logo-80649.gif" width="50" height="50">
<br>
<b>Internet</b>
<br>
<b>Explorer</b>
</button>
<button id="pulsante" title="GUIDA PER IL BROWSER OPERA" onclick="location.href='http://allypage.net23.net/Opera%20guida%20VLC%20PLUGIN.htm'">
<img src="http://vignette3.wikia.nocookie.net/logopedia/images/a/a9/Opera5_t.png/revision/latest?cb=20151022175418" width="50" height="50">
<br>
<b>Opera</b>
<br>
<b>Browser</b>
</button>
<button id="pulsante" title="GUIDA PER IL BROWSER SAFARI" onclick="location.href='http://allypage.net23.net/Safari%20-%20Mac%20Os%20guida%20VLC%20PLUGIN.htm'">
<img src="http://orig09.deviantart.net/18c5/f/2012/190/c/f/mlp_logo_safari_by_golden_fly-d56jqsb.png" width="50" height="50">
<br>
<b>Safari / Mac Os <img src="http://2.bp.blogspot.com/-nNX-OeBznmU/U3uhdJqHfmI/AAAAAAAAfqs/7wF3YNjO-0M/w1200-h630-p-k-nu/MacOS-logo.png" width="25" height="25"></b>
</button>
<br><br><br>
<b>Altri Sistemi/Browser utilizzati:</b>
<br><br>
<button id="pulsante" title="GUIDA PER IL BROWSER EDGE SU WINDOWS 10" onclick="location.href='http://allypage.net23.net/Edge%20%20guida%20VLC%20PLUGIN.htm'">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Microsoft_Edge_logo.svg/720px-Microsoft_Edge_logo.svg.png" width="50" height="50">
<br>
<b>Edge</b>
<br>
<b>Browser Windows 10</b>
</button>
<br><br><br>
All rights reserved - copyright 2016-17
<br>
Pagina realizzata da <b>Serpinter</b>.
</p>
</body>
</html>