[ PHPXref.com ] [ Generated: Sun Jul 20 20:03:52 2008 ] [ PluggedOut Nexus 0.1 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> index.php (source)

   1  <?php
   2  /*

   3  #===========================================================================

   4  #= Project : PluggedOut Nexus

   5  #= Version : 0.1

   6  #= Author  : Jonathan Beckett

   7  #= Email   : jonbeckett@pluggedout.com

   8  #= Home    : http://www.pluggedout.com/index.php?pk=dev_nexus

   9  #= Support : http://www.pluggedout.com/development/forums/viewforum.php?f=24

  10  #===========================================================================

  11  #= Copyright (c) 2005 Jonathan Beckett

  12  #= You are free to use and modify this script as long as this header

  13  #= section stays intact. This file is part of PluggedOut Nexus.

  14  #=

  15  #= This program is free software; you can redistribute it and/or modify

  16  #= it under the terms of the GNU General Public License as published by

  17  #= the Free Software Foundation; either version 2 of the License, or

  18  #= (at your option) any later version.

  19  #=

  20  #= This program is distributed in the hope that it will be useful,

  21  #= but WITHOUT ANY WARRANTY; without even the implied warranty of

  22  #= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

  23  #= GNU General Public License for more details.

  24  #=

  25  #= You should have received a copy of the GNU General Public License

  26  #= along with BLOG files; if not, write to the Free Software

  27  #= Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

  28  #===========================================================================

  29  */
  30  
  31  
  32  include  "lib/session.php";
  33  include  "lib/config.php";
  34  include  "lib/database.php";
  35  include  "lib/misc.php";
  36  include  "lib/html.php";
  37  
  38  $html = html_page_start("Homepage");
  39  
  40  // left hand side

  41  $html .= html_menu_side();
  42  
  43  $html .= html_page_sep();
  44  
  45  // content

  46  $html .= "<table border='0' cellspacing='0' cellpadding='0'><tr>"
  47      ."<td><img src='images/nexus.png' width='48' height='48' title='Free Online ".$site_short_name."'></td>"
  48      ."<td width='5'>&nbsp;</td>"
  49      ."<td><div class='title'>Welcome to ".$site_long_name."</div></td>\n"
  50      ."</tr></table>\n"
  51      ."<p class='body'>Welcome to ".$site_long_name." - probably the most simple Community site on the internet. This site exists because all the other sites around try and do too much - all you need to do here is register your details, tell everybody you know (who might be interested) about the site, and start messaging the people within the site. Before you know it, you'll have more friends than you have time to write to!</p>\n"
  52      ."<p class='heading'>Help Make a Difference</p>\n"
  53      ."<p class='body'>Most of the reason this website is here is to give something back to the internet, and to help make the world a little bit smaller and a little bit more friendly for somebody somewhere when they might just need it. Of course the only way the website can help bring people together is if they know about it, so please do everything you can think of. Put <a href='links.php'>links</a> in your websites, and add <a href='links.php'>footers</a> to your emails telling people about this simple little website that is trying to prove that people can make a difference to each other's lives.</p>\n";
  54  
  55  $html .= html_recent_member_list();
  56  
  57  $html .= html_page_end();
  58  
  59  print $html;
  60  ?>


[ Powered by PHPXref - Served by Debian GNU/Linux ]