home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 May / INTERNET103.ISO / pc / software / windows / building / php_nuke / html / includes / meta.php < prev    next >
Encoding:
PHP Script  |  2002-09-16  |  3.1 KB  |  43 lines

  1. <?php
  2.  
  3. /************************************************************************/
  4. /* PHP-NUKE: Web Portal System                                          */
  5. /* ===========================                                          */
  6. /*                                                                      */
  7. /* Copyright (c) 2002 by Francisco Burzi                                */
  8. /* http://phpnuke.org                                                   */
  9. /*                                                                      */
  10. /* This program is free software. You can redistribute it and/or modify */
  11. /* it under the terms of the GNU General Public License as published by */
  12. /* the Free Software Foundation; either version 2 of the License.       */
  13. /************************************************************************/
  14.  
  15. if (eregi("meta.php",$PHP_SELF)) {
  16.     Header("Location: ../index.php");
  17.     die();
  18. }
  19.  
  20. ##################################################
  21. # Include for Meta Tags generation               #
  22. ##################################################
  23.  
  24. echo "<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset="._CHARSET."\">\n";
  25. echo "<META HTTP-EQUIV=\"EXPIRES\" CONTENT=\"0\">\n";
  26. echo "<META NAME=\"RESOURCE-TYPE\" CONTENT=\"DOCUMENT\">\n";
  27. echo "<META NAME=\"DISTRIBUTION\" CONTENT=\"GLOBAL\">\n";
  28. echo "<META NAME=\"AUTHOR\" CONTENT=\"$sitename\">\n";
  29. echo "<META NAME=\"COPYRIGHT\" CONTENT=\"Copyright (c) 2002 by $sitename\">\n";
  30. echo "<META NAME=\"KEYWORDS\" CONTENT=\"News, news, New, new, Technology, technology, Headlines, headlines, Nuke, nuke, PHP-Nuke, phpnuke, php-nuke, Geek, geek, Geeks, geeks, Hacker, hacker, Hackers, hackers, Linux, linux, Windows, windows, Software, software, Download, download, Downloads, downloads, Free, FREE, free, Community, community, MP3, mp3, Forum, forum, Forums, forums, Bulletin, bulletin, Board, board, Boards, boards, PHP, php, Survey, survey, Kernel, kernel, Comment, comment, Comments, comments, Portal, portal, ODP, odp, Open, open, Open Source, OpenSource, Opensource, opensource, open source, Free Software, FreeSoftware, Freesoftware, free software, GNU, gnu, GPL, gpl, License, license, Unix, UNIX, *nix, unix, MySQL, mysql, SQL, sql, Database, DataBase, Blogs, blogs, Blog, blog, database, Mandrake, mandrake, Red Hat, RedHat, red hat, Slackware, slackware, SUSE, SuSE, suse, Debian, debian, Gnome, GNOME, gnome, Kde, KDE, kde, Enlightenment, enlightenment, Intercative, interactive, Programming, programming, Extreme, extreme, Game, game, Games, games, Web Site, web site, Weblog, WebLog, weblog, Guru, GURU, guru\">\n";
  31. echo "<META NAME=\"DESCRIPTION\" CONTENT=\"$slogan\">\n";
  32. echo "<META NAME=\"ROBOTS\" CONTENT=\"INDEX, FOLLOW\">\n";
  33. echo "<META NAME=\"REVISIT-AFTER\" CONTENT=\"1 DAYS\">\n";
  34. echo "<META NAME=\"RATING\" CONTENT=\"GENERAL\">\n";
  35.  
  36. ###############################################
  37. # DO NOT REMOVE THE FOLLOWING COPYRIGHT LINE! #
  38. # YOU'RE NOT ALLOWED TO REMOVE NOR EDIT THIS. #
  39. ###############################################
  40.  
  41. echo "<META NAME=\"GENERATOR\" CONTENT=\"PHP-Nuke $Version_Num - Copyright 2002 by http://phpnuke.org\">\n";
  42.  
  43. ?>