I want to keep the values of a form after submitting and I'm working with php. I tried this :
<input type="text" name="title" id="title" value="<?php echo isset($_POST['title']) ? $_POST['title'] : '' ;?>">
but I think it just work when I don't use header("location:something.php") after submitting. I know I can use sessions for this purpose but I wanted to know is there any ways to do this without using sessions?