fork download
  1. <html>
  2. <head>
  3. <title> <?php echo htmlspecialchars($this->title); ?> </title>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. </head>
  7. <body>
  8. <form method="get" action="/search/">
  9. <input type="text" name="search">
  10. <input type="submit" value="поиск">
  11. </form>
  12. <p><a href="/index/">Главная страница</a></p>
  13. <p><a href="/private/">Личный кабинет</a></p>
  14. <table>
  15. <tr>
  16. <td> <a href="/index/?sort=name&page=<?php echo $this->link; ?>">Имя</a></td>
  17. <td> <a href="/index/?sort=second_name&page=<?php echo $this->link; ?>">Фамилия</a></td>
  18. <td> <a href="/index/?sort=group_number&page=<?php echo $this->link; ?>">Группа</a></td>
  19. <td> <a href="/index/?sort=summary&page=<?php echo $this->link; ?>">Сумарный балл</a></td>
  20. </tr>
  21. <?php foreach ($this->atributes as $student) : ?>
  22. <tr>
  23. <td> <?php echo htmlspecialchars($student['name']); ?></td>
  24. <td> <?php echo htmlspecialchars($student['second_name']); ?></td>
  25. <td> <?php echo htmlspecialchars($student['group_number']); ?></td>
  26. <td> <?php echo htmlspecialchars($student['summary']); ?></td>
  27. </tr>
  28. <?php endforeach; ?>
  29. </table>
  30. <?php for($i = 1; $i <= $this->pages; $i++) : ?>
  31. <a href="/index/?sort=<?php echo $this->sort; ?>&page=<?php echo $i;?>">[<?php echo $i?>]</a>
  32. <?php endfor; ?>
  33. </body>
  34. </html>
  35.  
Runtime error #stdin #stdout #stderr 0.01s 52488KB
stdin
Standard input is empty
stdout
<html>
    <head>
        <title> 
stderr
PHP Fatal error:  Using $this when not in object context in /home/Tkcpqr/prog.php on line 3