Guest User

Untitled

a guest
Sep 23rd, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php
  2.   $count = 10;
  3. ?>
  4.  
  5. <html>
  6.   <head>
  7.     <title>№3</title>
  8.     <meta http-equiv="Content-Type" content="text/html"; charset="utf-8">
  9.   </head>  
  10.   <body>
  11. <?php
  12. if (isset($_POST['source']) && $_POST['source']) {
  13. ?>
  14.     <p><b>Повторение строк</b><br>
  15. <?php
  16.     echo str_repeat($_POST['source'] . ' ',  $count);    
  17. }
  18. ?>
  19.     <form action='index.php' method="post">
  20.       <p><b>Введите текст:</b><br>
  21.       <input type="text" name="source" size="40">
  22.       </p>
  23.       <input type="submit" value="Выполнить"/>
  24.     </form>
  25.   </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment