المشاركات 589 |
+التقييم 76 |
تاريخ التسجيل Mar 2019 |
الاقامة ام الدنيا مصر |
نظام التشغيل Other |
رقم العضوية 1982 |
<?PHP
// Adapted for The Art of Web: www.the-art-of-web.com
// Please acknowledge use of this code by including this header.
// initialise image with dimensions of 120 x 30 pixels
$image = @imagecreatetruecolor(120, 30) or die("Cannot Initialize new GD image stream");
// set background to white and allocate drawing colours
$background = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
imagefill($image, 0, 0, $background);
$linecolor = imagecolorallocate($image, 0xCC, 0xCC, 0xCC);
$textcolor = imagecolorallocate($image, 0x33, 0x33, 0x33);
// draw random lines on canvas
for($i=0; $i < 6; $i++) {
imagesetthickness($image, rand(1,3));
imageline($image, 0, rand(0,30), 120, rand(0,30), $linecolor);
}
session_start();
// add random digits to canvas
$digit = '';
for($x = 15; $x <= 95; $x += 20) {
$digit .= ($num = rand(0, 9));
imagechar($image, rand(3, 5), $x, rand(2, 14), $num, $textcolor);
}
// record digits in session variable
$_SESSION['digit'] = $digit;
// display image and clean up
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>
<img src="/captcha.php" width="120" height="30" border="1" alt="CAPTCHA">
<input type="text" size="6" maxlength="5" name="captcha" value="">
/captcha.php
$_SESSION['digit'] = $digit;
if($_SESSION['digit'] == $_POST['captcha'])
{
// اكتب اكوادك هنا لو الكاباتشا صح
}else{
// error captcha
}
اضافة رد
|
انشاء تحقق البشري بطريقه بسيطه
أدوات الموضوع | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
[ vBulletin 3 ] : فكرة كود ردود الفعل مثل الفيس بوك بطريقه الزين فورو | michel2012 | ركن تطوير منتديات vb3.8.0 | 5 | 08-13-2019 06:58 PM |
هاك التحقق البشري عند كتابة موضوع للجيل الثالث | هيلبرنت | ركن تطوير منتديات vb3.8.0 | 1 | 08-02-2018 09:08 PM |
هاك وضع سؤال التحقق البشري عند انشاء موضوع جديد للجيل الرابع | هيلبرنت | ركن تطوير المنتديات vB 4.0.0 | 0 | 07-02-2018 10:41 PM |
التحقق البشري الجديد (New reCaptcha ) | abo karim | ركن تطوير المنتديات vB 4.0.0 | 0 | 10-10-2015 07:24 PM |
درس عمل تيكست بطريقه الوان الطيف السبع | ادهم | دروس التصميم والجرافيكس | 0 | 09-18-2015 07:21 PM |