Hey,
Thanks for your help! I tried modifying the delete.php page again and it returns that the row has been deleted but it has not and I can't figure it out for the life of me.
Code:
// Include database connection
include("connect.php");
if($_GET["cmd"]=="delete"){
$id = $_GET['id'];
$sql = "DELETE FROM students WHERE usernumber=$id";
echo "Row deleted!";
}else {
die("Error");
}