php form submit

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • foekall
    New Member
    • Jan 2007
    • 28

    php form submit

    Dear All,

    I want to ask about for form submit. In my form there two text box and and one submit button. now i click submit button all value in the text box are cleared. So,
    how can i get old value in text box and can i get????
  • mainul
    New Member
    • Sep 2006
    • 51

    #2
    Why do you exactly need it? please expalin briefly otherwise it is difficult for everyone to give you the exact solutions.

    best regards
    Mainul

    Comment

    • code green
      Recognized Expert Top Contributor
      • Mar 2007
      • 1726

      #3
      [HTML]<input type="text" name="textbox_n ame"
      value="
      <?php if(isset($_POST['textbox_name'])) echo $_POST['textbox_name'];?>"
      OLD VALUE SHOULD APPEAR>[/HTML]
      excuse any syntax errors

      Comment

      Working...