there is such code here:
<form method="POST"> <input type="text" name="first" /> <input type="submit" name="ok_go" value="GO" /> </form> <?php if(isset($_POST['ok_go'])){ $first_var = $_POST['first']; $first_var = trim($first_var); if(empty($first_var)) echo 'Пусто'; else { echo 'Вы ввели: <b>', $first_var, '</b>'; } } ?>
I enter the text into the page, it shows you entered (my text) here only after a restart through another browser does not save what I entered. How to make so that the text I entered is preserved even after the page is updated?