[PHP] Habbo Styled Captcha [by m0nsta.]

Do you like this?


  • Total voters
    3
Status
Not open for further replies.

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
Yeah, I did this a few weeks ago and found it useless. If you want it, it's yours!

Screens:
2qnpkbr.png

2lwn2px.png


Download:



Password:
Code:
m0nstadot

How to Use:
PHP:
<?php
session_start();

if($_POST[submit]){
    $input_captcha = strip_tags($_POST['captcha']);
    $real_captcha = $_SESSION['m0nsta_captcha'];
    if($input_captcha !== $real_captcha){
        echo 'Your captcha code was incorrect!';
    }else{
        echo 'Your captcha code was correct!<br><strong>'.$real_captcha.'</strong>';
    }
}else{
    echo '<form method="post">
        <p>
            <label for="c">Enter Captcha Code</label><br>
            <input type="text" name="captcha" id="c" value="" size="50" maxlength="5"> &laquo; <img src="captcha.php">
        </p>
        <br>
        <p>
            <input type="submit" name="submit" value="Go &raquo;">
        </p>
    </form>';
}
?>

Enjoy,
- m0nsta.
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
Should use this for retros to be honest, You could do a register edit for PHPRetro, Would be pretty good.
 
Status
Not open for further replies.

Users who are viewing this thread

Top