libuk / last-lifts

Track your last barbell lifts - In slow development
0 stars 0 forks source link

Guard against missing token #6

Open libuk opened 2 months ago

libuk commented 2 months ago
Warning: Undefined array key "token" in /var/www/public/index.php on line 51

Warning: Cannot modify header information - headers already sent by (output started at /var/www/public/index.php:51) in /var/www/public/index.php on line 52
Access denied.

Possible solution:

if (isset($_POST['token'])) {
    $token = $_POST['token'];
} else {
    // Handle the case where 'token' is not set
}