Advertisement
HoneyRemedy

Untitled

Sep 11th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. $msg = "Enter the text";
  4. $out = "<input type='text' name='name' placeholder='name' >";
  5.  
  6. echo "<form action='process.php' method='get'>";
  7. echo $msg.':'.$out;
  8. echo "<br>How many times you want to print:";
  9. echo "<input type='text' name='number'><br>";
  10. echo "<input type='submit' value='Go'>";
  11. echo "</form>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement