PHP code example of maer / csrf
1. Go to this page and download the library: Download maer/csrf library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
maer / csrf example snippets
<form method="post" action="...">
<?= $csrf->getTokenField()
if ($csrf->validateToken($_POST['csrftoken'])) {
echo "Yay! It's a valid token!";
} else {
echo "Nope. That token isn't valid!";
}
$csrf->validateToken($_POST['csrftoken'], 'login-form');