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.



Your result can be seen below.

Result of php executing





Full code of verify.php

  1. <?php
  2.  
  3. // Starten der Sitzung
  4. session_start();
  5.  
  6. // Captcha-Text aus der Sitzung abrufen
  7. $captcha_text = $_SESSION["captcha_text"];
  8.  
  9. // Captcha-Text aus dem Formular abrufen
  10. $submitted_text = $_POST["captcha"];
  11.  
  12. // Captcha-Text vergleichen
  13. if (strtolower($submitted_text) == strtolower($captcha_text)) {
  14.   // Captcha wurde erfolgreich überprüft
  15.   echo "Captcha erfolgreich überprüft.";
  16. } else {
  17.   // Captcha nicht überprüft
  18.   echo "Captcha nicht überprüft.";
  19. }
  20.  
  21. ?>
File Description
  • verify
  • PHP Code
  • 28 Sep-2023
  • 471 Bytes
You can Share it: