Switched 'GET' to 'POST'

This commit is contained in:
2023-09-02 15:22:36 -05:00
parent 1c1e322bd8
commit 3fbb6c99df
5 changed files with 15 additions and 15 deletions

View File

@@ -1,8 +1,8 @@
<?php
require_once 'db.inc.php';
$email = $_GET['email'];
$password = $_GET['password'];
$email = $_POST['email'];
$password = $_POST['password'];
$session = init_cass_db();