Jump to content
  • 0

Получить данные из формы, и вывести их на страницу


Rustick
 Share

Question

Имеется страница http://promed100.ru/rust2/

Сделал для примера.

Я не знаю PHP. Моя задача состоит в том, чтобы написать обработчик для формы, которая на страница.

Я искал в поисковой системе решение своей проблемы, но не нашел, возможно в силу своего непрофессионализма, я задавал не те запросы.Я находил как вывести на экран

http://php-include.ru/stati/forma-vvoda-php

http://www.webmasterwiki.ru/PHP/Formy

Для того, чтобы я понял как работает, то, что мне нужно, хотелось бы для начала решить такую задачу.

Человек заполняет форму, нажимает кнопку "Отправить".

После этого данные, которые он ввел, повяляются ниже текста Lorem Ipsum. И это все появляется с отступом в 10 пикселей от левого края, и 10 пикселей сверху.

Моя задача понять и разобраться как это все работает, я не прошу решать за меня задачу, я хотел попросить вас, чтобы вы поделились ссылками, которые помогут мне в решении поставленной мной задачи, ну или запросы для поисковой системы, по которым я бы нашел решение.

Спасибо!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<?php
if (!empty($_POST)) {
echo '<pre>';
print_r($_POST);
echo '</pre>';
}
?>
<form action="" method="post">
<fieldset>
<input id="test" name="test" value="" /><br />
<input id="test_2" name="test_2" value="" /><br />
<input id="test_3" name="test_3" value="" /><br />
<input id="test_4" name="test_4" value="" /><br />
<select id="test_select" name="test_select">
<option vlaue="1">option 1</option>
<option vlaue="2">option 2</option>
<option vlaue="3">option 3</option>
<option vlaue="4">option 4</option>
</select>
</fieldset>
<fieldset>
<button type="submit">ok</button>
</fieldset>
</form>

  • Like 1
Link to comment
Share on other sites

  • 0

нет ничего проще, вот, кину-ка я в вас несколькими ссылками, глядишь и разберетесь:

http://www.softtime.ru/scripts/sendmessage.php

http://www.php.su/articles/?cat=email&page=001

http://php.net/manual/ru/function.mail.php

http://www.php-mail.ru/

http://phpclub.ru/detail/article/mail

  • Like 1
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