Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2.  
  3. // all your PHP code at top .. parsing/massaging etc
  4. $textvalue = $_POST['nameone'];
  5.  
  6. ?>
  7. <html>
  8. <head>
  9. This is head
  10. <title> This is the page title </title>
  11. </head>
  12. <body>
  13. <form name="formanme" method="post" action="">
  14. <input type="text" name="nameone" value=<?php echo $textvalue;?>
  15. <input type="submit" name="submitbutton" value="Click Here">
  16. </form>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement