Unsupported PHP app for analysing and displaying stats for Team Fortress 2
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

404.php 424B

1234567891011121314
  1. <?PHP
  2. define('TITLE', 'Error 404: Page not found');
  3. require('inc/header.php');
  4. echo '<h2>Error 404: Page not found</h2>';
  5. echo '<p>Sorry, the page you were looking for could not be found. ';
  6. echo 'If you typed the address to this page manually, please check your spelling and try again. ';
  7. echo 'You can also try to locate the page you are looking for using the menu above.</p>';
  8. require('inc/footer.php');
  9. ?>