Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <html><body><form action="script.php" method="post">
  2. name<input type="text name="fname"">
  3. <input type="submit">
  4. </form>
  5. </body></html>
  6.  
  7. <?php
  8. echo "Could not read name";
  9. ?>
  10.  
  11. <html>
  12. <body>
  13. <?php
  14. echo " welcome "
  15.  
  16. ?>
  17. </body>
  18. </html>
  19.  
  20. <html><body><form action="script.php" method="post">
  21. name<input type="text name="fname"">
  22. <input type="submit">
  23. </form>
  24. </body></html>
  25.  
  26. echo " welcome " . $_POST['fname'];
  27.  
  28. <input type="text" name="fname">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement