Arkadaşlar merhaba. Komik olacak ama basit tarzda bir site oluşturdum pek fazla bilgim yok.
Site HTML5 bir template idi. Ancak bazı php kodları çalıştırabilmem için sayfayı html olarak düzenledikten sonra .html uzantısını .php yapıp hostinge attım gayet iyi çalışıyor.
Problem şu ki contact form bölümüne math tarzında kibar bir captcha eklemeliyim. Ücretsiz bir tane buldum. Harika. Ancak index sayfası içinde kodlar direk görünsün istemiyorum. Bunun yerine contact formun içinden dosya çağırılsın istiyorum ancak başaramadım.
var current_time = new Date(); var normalPath = "ecaptcha.php?w='.$captcha_width.'&h='.$captcha_height.'&t='.$captcha_type.'&c='.$captcha_textcolor.'&n='.$captcha_name.'&time="+current_time; $("#ecaptcha").attr({ src: normalPath });
/* * File: ecaptcha_security.php * Author: Predrag Kopricanec * Copyright: 2013 Ebit IT * Date: 10/01/2013 * Updated: 10/01/2013 * Requirements: PHP 4/5 with GD and FreeType libraries * Link:http://tools.tramot.com/ * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details: *http://www.gnu.org/licenses/gpl.html * */
# Check is SESSION started if ((function_exists('session_status') && session_status() !== PHP_SESSION_ACTIVE) || !session_id()){ session_start(); }
# overrides the default PHP memory limit. ini_set('memory_limit', '-1');
# make GD Font Path putenv('GDFONTPATH='.realpath('.'));
class eCaptchaSecurity {
#font type var $font = 'Halant.ttf';
public $width; public $height; public $type; public $font_color; public $captcha_name;
function generateCase($cap_type){ $global_arr = array();