Задание1 - 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.



Your result can be seen below.

Result of php executing





Full code of Задание1.php

  1. <?php
  2.  
  3. // Заданные числа
  4. $число1 = 5;
  5. $число2 = 7;
  6.  
  7. // Находим сумму
  8. $сумма = $число1 + $число2;
  9.  
  10. // Находим произведение
  11. $произведение = $число1 * $число2;
  12.  
  13. // Выводим результаты
  14. echo "Сумма $сумма";
  15. echo ",  ";
  16. echo "Произведение $произведение";
  17.  
  18. ?>
  19.  
  20.  
File Description
  • Задание1
  • PHP Code
  • 08 Dec-2023
  • 395 Bytes
You can Share it: