Jump to content
  • 0

Очистка


CoDy
 Share

Question

Всем привет.

Вот столкнулся с неприятной ситуацией.

Есть некая форма с полями. После ввода данных и нажатия на субмит, форма уходит на сервер и обрабатывается.

Но дело в том что если нажать кнопку Ф5 запрос сново удет на сервер и опять будут выполнены теже самые действия.

Как с этим бороться??

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

А еще можно с помощью сессий вот так:

<?php
session_start();
if( isset($_POST['Name']) && (!isset($_SESSION['rnd']) || $_POST['rnd'] != $_SESSION['rnd']) )
{
$_SESSION['rnd'] = $_POST['rnd'];
echo $_POST['name'];
}
?>
<form action = "test.php" method = "post">
<input name="name" type="text" value="">
<input type="hidden" name="rnd" value="<?php echo rand(0, 10000); ?>" />
<input type="submit" value="Отправить">
</form>

Либо вместо rnd использовать microtime, так как ранд может и одинаковое число сгенерировать.

А вообще, перенаправление может и не произойти, т.к.

1) echo отправит свои заголовки.

2) если используешь перенаправление через заголовки, вывода быть не должно вообще.

3) необходимый текст выведешь на странице, на которую перенаправляешь.

Edited by rus
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