fork download
  1. <?php
  2. $a = isset($_GET['a']) && is_numeric($_GET['a']) ? $_GET['a'] : 0;
  3. $b = isset($_GET['b']) && is_numeric($_GET['b']) ? $_GET['b'] : 0;
  4.  
  5. $result = $a + $b;
  6.  
  7. // загружаем шаблон
  8. include('template.html');
Success #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Warning:  include(template.html): failed to open stream: No such file or directory in /home/ll8J6z/prog.php on line 8
PHP Warning:  include(): Failed opening 'template.html' for inclusion (include_path='.:/usr/share/php') in /home/ll8J6z/prog.php on line 8