Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. $pages = [
  2. "index" => [
  3. "title" => "Intro to this multipage.",
  4. "file" => __DIR__ . "/$base/index.php",
  5. ],
  6. "print-get" => [
  7. "title" => "Print the content of \$_GET variable.",
  8. "file" => __DIR__ . "/$base/print-get.php",
  9. ],
  10. "get-samples" => [
  11. "title" => "Try various links using GET queryparams.",
  12. "file" => __DIR__ . "/$base/get-samples.php",
  13. ],
  14. "print-server" => [
  15. "title" => "Print the content of \$_SERVER variable.",
  16. "file" => __DIR__ . "/$base/print-server.php",
  17. ],
  18. "info-_server" => [
  19. "title" => "Details about the \$_SERVER variable.",
  20. "file" => __DIR__ . "/$base/info-_server.php",
  21. ],
  22. "foreach-server" => [
  23. "title" => "Details about the lengths of the values in \$_SERVER",
  24. "file" => __DIR__ . "/$base/foreach-server.php",
  25. ],
  26. "error" => [
  27. "title" => "error",
  28. "file" => __DIR__ . "/$base/error.php",
  29. ],
  30. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement