[Wikis-SVN] SF.net SVN: wikis:[297] tshome/php
Brought to you by:
hydria
|
From: <hy...@us...> - 2011-05-25 13:59:25
|
Revision: 297
http://wikis.svn.sourceforge.net/wikis/?rev=297&view=rev
Author: hydria
Date: 2011-05-25 13:59:17 +0000 (Wed, 25 May 2011)
Log Message:
-----------
Testing PHP
Added Paths:
-----------
tshome/php/LocalSettings.php
tshome/php/index.php
Added: tshome/php/LocalSettings.php
===================================================================
--- tshome/php/LocalSettings.php (rev 0)
+++ tshome/php/LocalSettings.php 2011-05-25 13:59:17 UTC (rev 297)
@@ -0,0 +1,12 @@
+<?php
+
+/*
+
+ LocalSettings.php file, where all the different configurations
+ can be made at. Please only edit this file and not anything
+ else, unless you know what you are doing!
+
+*/
+
+// Define what message to appear when the site is accessed
+$hyMessage = "Hello world!";
Added: tshome/php/index.php
===================================================================
--- tshome/php/index.php (rev 0)
+++ tshome/php/index.php 2011-05-25 13:59:17 UTC (rev 297)
@@ -0,0 +1,9 @@
+<?php
+
+$IP = dirname( __FILE__ );
+
+require_once("$IP/LocalSettings.php");
+
+echo $hyMessage;
+
+?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|