Version 0.9: Code comments, bug fixes, three new test files
This commit is contained in:
parent
42404cd9d7
commit
9973ea84e4
17 changed files with 390 additions and 279 deletions
|
@ -35,11 +35,11 @@ THE SOFTWARE.
|
|||
</div>
|
||||
<div class="main">
|
||||
<?php
|
||||
include '../config.php';
|
||||
require '../config.php';
|
||||
if ($rcc == "yes") {
|
||||
include 'password.php';
|
||||
session_start();
|
||||
if(isset($_POST['passwd'])){
|
||||
if(isset($_POST['passwd'])) {
|
||||
$passwd = $_POST['passwd'];
|
||||
$_SESSION['passwd'] = $_POST['passwd'];
|
||||
} else if(isset($_SESSION['passwd'])) {
|
||||
|
|
Reference in a new issue