|
|
|
ปรึกษาเรื่องการ Random password แบบรูปภาพ กับ HTML |
|
|
|
|
|
|
|
ลองดูนะคับ
ขั้นแรก - ลอง copy code ตาม link ที่ให้มา แล้วไว้ที่ไฟล์ image.php นะคับ
ขั้นต่อมา - ในไฟล์ที่ต้องการให้แสดงรูป ให้แทรก code ดังนี้
<img src = "image.php">
มีข้อแม้ว่าใน ไฟล์ image.php ต้องมีแต่ code php นะคับ
ลองดูนะคับเพราะผมก็ใช้วิธีนี้แล้วไม่มีปัญหาอะไรคับ
|
|
|
|
|
Date :
4 ก.พ. 2549 21:34:01 |
By :
nut_t02 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากเลยค่ะ ได้แล้วค่ะ
|
|
|
|
|
Date :
5 ก.พ. 2549 21:23:41 |
By :
nu_nu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วเราจะใช้วิธีการตรวจสอบยังไงครับแล้วใช้ตัวแปรไหนตรวจสอบความถูกต้องครับ
ว่า user กรอกได้ถูกต้องตามรูปอ่ะครับ ขอบคุณมากครับ
|
|
|
|
|
Date :
18 มิ.ย. 2550 15:51:42 |
By :
kenchin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
function random_password($len)
{
srand((double)microtime()*10000000);
$chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
$ret_str = "";
$num = strlen($chars);
for($i = 0; $i < $len; $i++)
{
$ret_str.= $chars[rand()%$num];
$ret_str.="";
}
return $ret_str;
}
// echo random_password(8);
$passw = random_password(7);
$im = imagecreate(100, 100);
$string = '$passw ';
$bg = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// prints a black "P" in the top left corner
imagechar($im, 1, 0, 0, $string, $black);
header('Content-type: image/png');
imagepng($im);
|
|
|
|
|
Date :
2011-07-26 22:10:40 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|