Jump to content
  • 0

Как разделить форму на три, но при этом вернуть сумму этих форм ?


Ма ков А ту
 Share

Question

Как было и работало:

Код.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<body>

<tr>

<td>

<form action="print.php" method="post" >

<tr>

<td align="right">Введите (Ф.И.О.):</td><td><input name="fio" type="text" size="70" maxlength="70" />

</td>

</tr>

<tr>

<td ><input name="print" value="Послать" type="submit" />

</td></tr>

</form>

</td></tr>

</body>

</html>

Нужно сделать так:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<body>

<tr>

<td>

<form action="print.php" method="post" >

<tr>

<td align="right">Введите Фамилию:</td><td><input name="f" type="text" size="20" maxlength="20" />

</td>

<td align="right">Имя:</td><td><input name="i" type="text" size="20" maxlength="20" />

</td>

<td align="right">Отчество:</td><td><input name="o" type="text" size="20" maxlength="20" />

</td>

</tr>

<tr>

<td ><input name="print" value="Послать" type="submit"/>

</td></tr>

</form>

</td></tr>

</body>

</html>

только чтобы возвращалась переменная fio=f+i+o.

Подскажите пожалуйста как это реализовать.

Edited by Ма ков А ту
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Достаточно ссылки на статью.

Т.е. ты предлагаешь, чтобы я тебе написал решение?

У меня в первом варианте работает, когда я забиваю все в одно поле. А во втором нужно только суммировать значения всех полей в одно, чтобы не менять и не влезать в print.php

Link to comment
Share on other sites

  • 0

<td>
<form action="print.php" method="post" >
<tr>

</td></tr>
</body>

Поубивал бы

Решение 1: Использовать ajax, и на этапе отправки собирать переменную

Решение 2: $_GET['fio']=$_GET['f'].$_GET['i'].$_GET['o'];

Edited by Int
Link to comment
Share on other sites

  • 0

Благодарю за пример. Все понятно.)))

<td>
<form action="print.php" method="post" >
<tr>

</td></tr>
</body>

Поубивал бы

Решение 1: Использовать ajax, и на этапе отправки собирать переменную

Решение 2: $_GET['fio']=$_GET['f'].$_GET['i'].$_GET['o'];

Спасибо. Попробую.

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