Hi All having a problem with the following statement
" Notice: Undefined index: Username in C:\wamp\www\david\remoteaccess\index.php on line 6". I have tried defining Username in a number of ways, but I seem to missing something.
Any help would be great
Thanks in advance
Thanks
<?php
session_start();
include("includes/utilities.php");
include("includes/functions.php");
$username = $_POST['Username'];
var_dump($_POST);
$Errors = "";
$_SESSION['LoggedIn'] = false;
$_SESSION['UserID'] = "";
$_SESSION['UserAdmin'] = false;
$_SESSION['Username'] = $username;
if (isset($_POST["Username"])) {
SQLUser();
}else{
loginForm();
}
?>