fork download
  1. <?php
  2.  
  3. if (isset($_GET['q'])) {
  4. $q = $_GET['q'];
  5. }else{
  6. $q = '';
  7. }
  8. $searchField = trim($q);
  9. $lang = "ru";
  10. $data = array('q' => $searchField, 'lang' => $lang);
  11. $link = "?" . http_build_query($data);
  12.  
  13. include "template.html";
Success #stdin #stdout #stderr 0.02s 24400KB
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/JrWaJz/prog.php on line 13
PHP Warning:  include(): Failed opening 'template.html' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/JrWaJz/prog.php on line 13