Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_php thread: Dynamically Change Text after processing a form...................


Message #1 by Vamshi <vamshi@p...> on 16 Aug 2002 17:47:23 +0530
I have no idea what exactly you are trying to do.  If you are just trying
to replace the "Message 1" and "Message 2" parts in the page then just pass
them like you do the result and then echo them.  If you are trying to
redisplay the info they typed in just pass that info with the result and
add this to the form:
_--___________________________________________________________________--__

    <td>   <input type="text" value="<?php echo $feild1 ?>"
name="feild1">  </td> <td> Message 1 </td>
  </tr>
  <tr>
    <td> <input value="<?php echo $feild2 ?>" type="text" name="feild2">
</td><td>Message 2</td>
  </tr>
 

I don't know if that answers your questions, but i don't really know what
the questions are to tell you the truth.

Also, feild should be field.

i before e and all that.

regards,
dan

  Return to Index