verify - PHP Online
Form of PHP Sandbox
Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php
in the places where the PHP script should be executed.
Result of php executing
Full code of verify.php
- <?php
- // Starten der Sitzung
- session_start();
- // Captcha-Text aus der Sitzung abrufen
- $captcha_text = $_SESSION["captcha_text"];
- // Captcha-Text aus dem Formular abrufen
- $submitted_text = $_POST["captcha"];
- // Captcha-Text vergleichen
- if (strtolower($submitted_text) == strtolower($captcha_text)) {
- // Captcha wurde erfolgreich überprüft
- echo "Captcha erfolgreich überprüft.";
- } else {
- // Captcha nicht überprüft
- echo "Captcha nicht überprüft.";
- }
- ?>