Jump to content
  • 0

Сохранение значений в полях формы


Cerberus
 Share

Question

Добрый всем день.

Вопрос в следующем:

есть форма

<form method="POST" action="form.php">
<input type="text" name="in1">
<input type="submit" value="Send">
</form>

Как сделать так, чтобы при неправильно введенной информации в текстовое поле после нажатия на кнопку, данные введенные в поле остались в поле?

Как проверить данные на корректность вопросов нет, как вывести сообщение о том, что были неверное введены данные - тоже, а вот как "оставить" данные в поле?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
Как сделать так, чтобы при неправильно введенной информации в текстовое поле после нажатия на кнопку, данные введенные в поле остались в поле?

<input type="text" name="in1" value="<?php echo( $POST['in1'] );?>">

Edited by s0rr0w
Link to comment
Share on other sites

  • 0

Вот такой вот код у меня получился:

<?php 
if (isset($_POST['in1']) ){
$in = $_POST['in1'];
$value = "value='".$in."'";
if ($in != "asd"){
$mess = "<h3>You writed incorrect data!</h3>";
} else {
$mess = "";
$value = " placeholder='Input your text'";
}
} else {
$value = " placeholder='Input your text'";
$mess = "";
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Тест</title>
</head>
<body>
<?php echo $mess; ?>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input name="in1" type="text"<?php echo $value; ?>>
<input type="submit" value="Send">
</form>
</body>
</html>

Вся "беда" в том, что полей в форме "несколько" больше :-) и проверок, соответственно надо будет сделать больше. Но думаю проверку введенных данных впихнуть в функцию. Благодарю за оперативную помощь!

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