Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: captcha code įterpimas

Parašė manex· 2010 Spa. 30 22:10:32
#1

Sveiki tai gi reiktu pagalbos su captcha kodo įdėjimų. Bandžiau jį įdėti į kontaktų forma, norėjau padaryti, kad reiktu įvesti saugos kodą, tados laiškas išsisiųstu, na bet kodą įdėjau tačiau nors ir saugos kodo neįvedus laišką vis tiek išsiunčia. PS. dar gal kas galėtu pasakyti kaip reiktu padaryti visa balta fona? Bandžiau su class, style, bet deja neišėjo.

Kaip dabar atrodo galite peržiūrėti http://frag.lt/kontaktai

kodas:


<?php
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."contact.php";
 
if (isset($_POST['sendmessage'])) {
	$error = "";
	$mailname = substr(stripinput(trim($_POST['mailname'])),0,50);
	$email = substr(stripinput(trim($_POST['email'])),0,100);
	$subject = substr(str_replace(array("\r","\n","@"), "", descript(stripslash(trim($_POST['subject'])))),0,50);
	$message = descript(stripslash(trim($_POST['message'])));
	if ($mailname == "") {
		$error .= "· <span class='alt'>".$locale['420']."</span><br>\n";
	}
	if ($email == "" || !preg_match("/^[-0-9A-Z_\.]{1,50}@([-0-9A-Z_\.]+\.){1,50}([0-9A-Z]){2,4}$/i", $email)) {
		$error .= "· <span class='alt'>".$locale['421']."</span><br>\n";
	}
	if ($subject == "") {
		$error .= "· <span class='alt'>".$locale['422']."</span><br>\n";
	}
	if ($message == "") {
		$error .= "· <span class='alt'>".$locale['423']."</span><br>\n";
	}
	if (!$error) {
		require_once INCLUDES."sendmail_include.php";
		sendemail($settings['siteusername'],$settings['siteemail'],$mailname,$email,$subject,$message);
		opentable("Kontaktai");
		echo "<table cellpadding='0' cellspacing='0' width='100%' class='tbl'>\n<tr>\n";
		echo "<center><br>\n".$locale['440']."<br><br>\n".$locale['441']."</center><br>\n";
		closetable();
	} else {
		opentable($locale['400']);
		echo "<center><br>\n".$locale['442']."<br><br>\n$error<br>\n".$locale['443']."</center><br>\n";
		closetable();
	}
} else {
	opentable($locale['400']);	
	echo "<span class='alt'>".$locale['401']."</span><br>
<form name='userform' method='post' action='".FUSION_SELF."'>
<table align='center' cellpadding='0' cellspacing='0' class='tbl'>
<tr>
<td width='100'>".$locale['402']."</td>
<td><input type='text' name='mailname' maxlength='50' class='textbox' style='width: 200px;'></td>
</tr>
<tr>
<td width='100'>".$locale['403']."</td>
<td><input type='text' name='email' maxlength='100' class='textbox' style='width: 200px;'></td>
</tr>
<tr>
<td width='100'>".$locale['404']."</td>
<td><input type='text' name='subject' maxlength='50' class='textbox' style='width: 200px;'></td>
</tr>
<tr><td valign='top' width='90'>".$locale['405']."</td>
<td><textarea name='message' rows='10' cols='58' class='textbox'></textarea></td>
</tr>
</tr>\n";
	if ($settings['display_validation'] == "1") {
		echo "<tr>\n<td class='tbl'>".$locale['504']."</td>\n<td class='tbl'>";
		echo make_captcha();
		echo "</td>
</tr>
<tr>
<td class='tbl'>".$locale['505']."<span style='color:#ff0000'>*</span></td>
<td class='tbl'><input type='text' name='captcha_code' class='textbox' style='width:100px'></td>
</tr>\n";
	}
	echo "<tr><td align='center' colspan='2'>
<input type='submit' name='sendmessage' value='".$locale['406']."' class='button'>
</td>
</tr>
</table>
</form>\n";
	closetable();
}
 
require_once "side_right.php";
require_once "footer.php";
?>