php form alanlarından birini teslim etmiyor

2 Cevap php

i have bought a template that have built in contact form problem is that it submits every thing except "company" name i messed around with it but cant get to work it. if you can point me to some solution i would be greatful

şimdiden teşekkürler

Bu php script

if(!$_POST) exit;

$email = $_POST['email'];


//$error[] = preg_match('/\b[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i', $_POST['email']) ? '' : 'INVALID EMAIL ADDRESS';
if(!eregi("^[a-z0-9]+([_\\.-][a-z0-9]+)*" ."@"."([a-z0-9]+([\.-][a-z0-9]+)*)+"."\\.[a-z]{2,}"."$",$email )){
    $error.="Invalid email address entered";
    $errors=1;
}
if($errors==1) echo $error;
else{
    $values = array ('name','email','message');
    $required = array('name','email','message');

    $your_email = "--------@gmail.com";
    $email_subject = "New Message: ".$_POST['subject'];
    $email_content = "new message:\n";

    foreach($values as $key => $value){
      if(in_array($value,$required)){
        if ($key != 'subject' && $key != 'company') {
          if( empty($_POST[$value]) ) { echo 'Please fill in all required fields, marked with *'; exit; }
        }
        $email_content .= $value.': '.$_POST[$value]."\n";
      }
    }

    if(@mail($your_email,$email_subject,$email_content)) {
        echo 'Thanks for your message, will contact you soon.'; 
    } else {
        echo 'ERROR!';
    }
}

2 Cevap

$values = array ('name','email','message');

PHP komut dosyası bu listeye 'company' Ekle.

Ayrıca, ben foreach döngü amaçlanan işlevselliği almak için, bu gibi bakmak değiştirmek istiyorsunuz:

foreach($values as $key => $value)
{
    if(in_array($value,$required))
    {
        if(empty($_POST[$value]))
        {
                echo 'Please fill in all required fields, marked with *';
                exit;
        }
    }
    $email_content .= $value.': '.$_POST[$value]."\n";
}

Eğer varsa, bu yolu, $required dizide olmayan alanları hala e eklenir - onlar sadece boş çek geçmek zorunda değilsiniz.

Sorun bu satırı:

$email_content .= $value.': '.$_POST[$value]."\n";

Bu hat sürece ulaştı asla:

if (in_array($value,$required)) {

... Memnun. Bu anlamı, listelenen sadece alanlar $required e-posta ekli olacak. Bu tamam ise, o zaman sadece bu satırları değiştirin:

$required = array('name','email','message');
$values = array ('name','email','message');

Okumak için:

$required = array ('name','email','message','company');
$values = array ('name','email','message','company');

Bu GEÇMEYİNİZ ise, bu değiştirin:

foreach ($values as $key => $value) {
    if (in_array($value,$required)) {
        if ($key != 'subject' && $key != 'company') {
            if (empty($_POST[$value])) {
                echo 'Please fill in all required fields, marked with *';
                exit;
            }
        }
        $email_content .= $value.': '.$_POST[$value]."\n";
    }
}

Bu gibi bakmak:

foreach ($values as $key => $value) {
    if (in_array($value,$required)) {
        if ($key != 'subject' && $key != 'company') {
            if (empty($_POST[$value])) {
                echo 'Please fill in all required fields, marked with *';
                exit;
            }
        }
    }
    $email_content .= $value.': '.$_POST[$value]."\n";
}

Sonra company $required çıkar, ama $values bunu bırakabilirsiniz. Ben tüm alanlar required çünkü sen başladı şablon iyi çalıştı sanıyorum.

O still işe yaramazsa, (kontör) Bu değiştirin:

if(!$_POST) exit;

Bu gibi bakmak:

if(!$_POST) exit;
print_r($_POST);

... Ve söz konusu ek çıkışını yapıştırın.

Ayrıca, başka bir satıcıdan şablonları satın düşünün :)