Home page

Welcome to gamingpros website

function show_captcha_popup() {
// Generate a random number for the CAPTCHA
$captcha_number = rand(1000, 9999);
?>
<div id=”captcha-popup”>
<h2>Please complete the CAPTCHA to continue:</h2>
<p><?php echo $captcha_number; ?></p>
<input type=”text” id=”captcha-input” name=”captcha-input” required>
<button id=”captcha-submit” disabled>Submit</button>
</div>
<script type=”text/javascript”>
// Enable the submit button when the correct CAPTCHA number is entered
document.getElementById(“captcha-input”).addEventListener(“input”, function() {
if (this.value == “<?php echo $captcha_number; ?>”) {
document.getElementById(“captcha-submit”).disabled = false;

Design a site like this with WordPress.com
Get started