Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
thebestprx
/
public_html
/
contact
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/thebestprx/public_html/contact/verify-image-bg.php
<?php session_start(); $word_1 = ''; for ($i = 0; $i < 6; $i++) { $word_1 .= chr(rand(97, 122)); } $_SESSION['random_number'] = $word_1; $dir = 'fonts/'; $image = imagecreatetruecolor(110, 30); //$font = "Artnarong.ttf"; // font style $font = "recaptchaFont.ttf"; // font style $color = imagecolorallocate($image, 0, 8, 0);// color $white = imagecolorallocate($image, 255, 255, 255); // background color white imagefilledrectangle($image, 0,0, 709, 99, $white); imagettftext ($image, 22, 0, 5, 23, $color, $dir.$font, $_SESSION['random_number']); header("Content-type: image/png"); imagepng($image); ?>