MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b1705/reserva.events/stesconsulting/php/
File Upload :
Current < : /hermes/bosweb/b1705/reserva.events/stesconsulting/php/contact-form-verify-captcha.php

<?php
session_start();
session_cache_limiter('nocache');
header('Expires: ' . gmdate('r', 0));

header('Content-type: application/json');

if (strtolower($_POST["captcha"]) == strtolower($_SESSION['captchaCode'])) {
	$arrResult = array ('response'=>'success');
} else {
	$arrResult = array ('response'=>'error', 'code'=>strtolower($_SESSION['captchaCode']));
}

echo json_encode($arrResult);
?>