how can i show the value in the input text box when i click edit from the previous form? so i can edit the value. thanx a lot.
use HTML
<input type="textbox" value="<?php echo $_POST['myVar']>">
this assume, submit button is rename to "Edit" and form method="post"
and there is an
<input type="hidden" name="myVar" value="whatsoever">