Skip to content
  • This project
    • Loading...
  • Sign in

Harshit / aashrayaa-eco-city

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Registry
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • aashrayaa-eco-city
  • class
  • check-captcha.php
  • Harshit's avatar
    changes · a0ec2931
    Harshit committed 2025-05-28 17:21:54 +0530
    a0ec2931
check-captcha.php 171 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
<?php
session_start();
$flag = false;
if ($_SESSION['captcha'] == md5($_REQUEST['captcha'])) {
    $flag = true;
}
echo json_encode($flag);
//echo $_REQUEST['captcha'];
?>