15-02-2009, 19:33
|
|
|
חבר מתאריך: 16.09.08
הודעות: 433
|
|
טוב הצלחתי ליצור קוקיס עם התוכן והכל , אבל הבעיה שלי בהשוואה הזמן כל הזמן משתנה :S
עשיתי משהו כזה...
קוד PHP:
function createimage()
{
header('Content-Type: image/jpeg');
$font_number = 4;
$text = substr(md5(time()),0,6);
setcookie("code",$text,time()+3600);
$width = 3 * strlen($text) * imagefontwidth($font_number);
$height = 3 * imagefontheight($font_number);
$image = imagecreate($width , $height);
$bgcolor = imagecolorallocate($image , 200 , 200 , 200);
$textcolor = imagecolorallocate($image , 0 , 0 , 0);
$x_position = ($width - (strlen($text) * imagefontwidth($font_number))) / 2;
$y_position = ($height - imagefontheight($font_number)) / 2;
imagestring($image, $font_number, $x_position, $y_position, $text, $textcolor);
imagejpeg($image);
imagedestroy($image);
}
function checkimage()
{
echo $_COOKIE['code'];
$text = substr(md5(time()),0,6);
if($text == $_COOKIE['code'])
{
echo "good";
}
}
אבל הוא כל הזמן לא מציג לי GOOD כי הזמן משתנה :S
_____________________________________
היי,
שמי דן , ואשמח לעזור לכם בכל פנייה שהיא
ניתן ליצור איתי קשר באיימיל (DanDan@walla.com) במסנג'ר (DanDan@walla.com) ובאיסיקיו (12348188)
גלישה נעימה...
|