Jump to content
  • 0

Помогите разобраться с формой!


Jnger
 Share

Question

Привет пипол помогите пожалуйста разобраться с формой, не как не могу включить в ней поля для обязательного заполнения подскажите пожалуйста как мне это сделать, чтобы работали поля на проверку и форма отправлялась на мыло!

Вот сама форма.

<form action="mailtest11.php" method="POST">
<table width="100%"><!--DWLayoutTable-->
<input type="hidden" name="action" value="send">
<p>
<td width="100%"> <div align="left">
</p>
<table border="0" cellspacing="10" cellpadding="0" bgcolor="#F4F0F0" width="966">
<tr valign="top">
<td width="23%" bordercolor="#C0C0C0"><strong> Контактное лицо (тел, e-mail)<font color="#FF0000"><span lang="en-us">*</span></font></strong></td>
<td true="true" width="73%"><input type="text" name="text1" maxlength="64" size="40"/>
</td>
</tr>
<tr valign="top">
<td width="23%" true="true"><strong> Объем груза, м3<font color="#FF0000"><span lang="en-us">*</span></font></strong></td>
<td true="true" width="73%"><input type="text" name="text2" maxlength="64" size="40"/>
</td>
</tr>
<tr valign="top">
<td width="23%" true="true"><strong> Габариты, мм<font color="#FF0000"><span lang="en-us">*</span></font></strong></td>
<td true="true" width="73%"><input type="text" name="text3" maxlength="64" size="40"/>
</td>
</tr>
<tr valign="top">
<td width="23%" height="10" true="true"><strong>Брутто вес, кг<font color="#FF0000"><span lang="en-us">*</span></font></strong></td>
<td true="true" width="73%" height="10"><input type="text" name="text4" maxlength="64" size="40"/>
</td>
</tr>
<tr>
<td width="23%" true="true"><strong> Нетто вес, кг<font color="#FF0000"><span lang="en-us">*</span></font></strong></td>
<td true="true" width="73%"><input type="text" name="text5" maxlength="64" size="40"/>
</td>
</tr>
<tr>
<td width="23%" true="true"><strong> Адрес загрузки<font color="#FF0000"><span lang="en-us">*</span></font></strong></td>
<td true="true" width="73%" bgcolor="#F4F2F2"><input type="text" name="text6" maxlength="64" size="40"/>
</td>
</tr>
<tr valign="top">
<td width="23%" height="73" true="true">
<p align="left"><strong>Описание груза<font color="#FF0000"><span lang="en-us">*</span></font></strong></p>
<p align="left"><font color="#000080"><b>Поля отмеченные</b></font> <strong>
<font color="#FF0000"><span lang="en-us">*</span> </font>
<font color="#000080">обязательны для заполнения</font></strong></td>
<td true="true" width="73%" height="73" valign="middle"><textarea rows="10" name="text7" cols="60"></textarea>
</td>
</tr>
<tr valign="top">
<td true="true" width="23%"> </td>
<td true="true" width="73%" ><input type="submit" name="submit" value="Отправить" />
<font color="#000080"><b><span lang="en-us">  </span>

Вот скрипт для отправки на мыло формы!

<body>
<?php
error_reporting(E_ALL);

if(!isset($_POST['submit']))
{


}
else
{

$text1 = $_POST['text1'];
$text2 = $_POST['text2'];
$text3 = $_POST['text3'];
$text4 = $_POST['text4'];
$text5 = $_POST['text5'];
$text6 = $_POST['text6'];
$text7 = $_POST['text7'];

$to = 'jnger@ru.ru';
$subj = 'заказ';
$email_from = 'jnger@ru.ru';

$text = 'Контактное лицо (тел, e-mail): ' .$text1. "n";
$text .= 'обьем груза: ' .$text2. "n";
$text .= 'Габариты, мм: ' .$text3. "n";
$text .= 'Брутто вес, кг: ' .$text4. "n";
$text .= 'Нетто вес, кг: ' .$text5. "n";
$text .= 'Адрес загрузки: ' .$text6. "n";
$text .= 'Описание груза: ' .$text7. "n";
$text = wordwrap($text, 70);


$headers = "MIME-Version: 1.0rn";
$headers .= "Content-type: text/plain; charset=windows1251rn";
$headers .= 'From: '.$email_from. "rn" .
'Reply-To: '.$email_from. "rn" .
'X-Mailer: PHP/' . phpversion();

if (@mail($to, $subj, $text, $headers))
echo "Предварительный заказ отослан";
else
echo "Письмо не отослано";
}
?>

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

isset не гуманно. привильно

<?php
error_reporting(E_ALL);

if(!isset($_POST['submit']))
{
$text1 = $_POST['text1'];
$text2 = $_POST['text2'];
$text3 = $_POST['text3'];
$text4 = $_POST['text4'];
$text5 = $_POST['text5'];
$text6 = $_POST['text6'];
$text7 = $_POST['text7'];
if(!empty($text1) && !empty($text2) && !empty($text3) && !empty($text4) && !empty($text5) && !empty($text6) && !empty($text7)){

$to = 'jnger@ru.ru';
$subj = 'заказ';
$email_from = 'jnger@ru.ru';

$text = 'Контактное лицо (тел, e-mail): ' .$text1. "n";
$text .= 'обьем груза: ' .$text2. "n";
$text .= 'Габариты, мм: ' .$text3. "n";
$text .= 'Брутто вес, кг: ' .$text4. "n";
$text .= 'Нетто вес, кг: ' .$text5. "n";
$text .= 'Адрес загрузки: ' .$text6. "n";
$text .= 'Описание груза: ' .$text7. "n";
$text = wordwrap($text, 70);


$headers = "MIME-Version: 1.0rn";
$headers .= "Content-type: text/plain; charset=windows1251rn";
$headers .= 'From: '.$email_from. "rn" .
'Reply-To: '.$email_from. "rn" .
'X-Mailer: PHP/' . phpversion();

if (@mail($to, $subj, $text, $headers))
echo "Предварительный заказ отослан";
else
echo "Письмо не отослано";
}
}
?>

Link to comment
Share on other sites

  • 0

Девятилап спасибо так по аккуратней работает! А мог бы подсказать как настроить скрипт сто бы если обязательные поля не заполнены от выдавал сообщение типа " Пожалуйста, заполните все поля", :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy