Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $count = 10;
- ?>
- <html>
- <head>
- <title>№3</title>
- <meta http-equiv="Content-Type" content="text/html"; charset="utf-8">
- </head>
- <body>
- <?php
- if (isset($_POST['source']) && $_POST['source']) {
- ?>
- <p><b>Повторение строк</b><br>
- <?php
- echo str_repeat($_POST['source'] . ' ', $count);
- }
- ?>
- <form action='index.php' method="post">
- <p><b>Введите текст:</b><br>
- <input type="text" name="source" size="40">
- </p>
- <input type="submit" value="Выполнить"/>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment