Тест - PHP Online
Form of PHP Sandbox
Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php
in the places where the PHP script should be executed.
Result of php executing
Full code of Тест.php
- <?php
- //Если город пустой - покажем форму
- if (isset($_REQUEST['city'])) {
- ?>
- <form action="" method="GET">
- <input type="text" name="name">
- <input type="submit">
- </form>
- <?php
- }
- ?>
- <?php
- //Если форма была отправлена и город не пустой:
- if (isset($_REQUEST['city'])) {
- $city = strip_tags($_REQUEST['age']);
- echo 'Ваш город: '.$age;
- }
- ?>