My favorites | Sign in
Project Home Downloads
Project Information
Members
Featured
Downloads

"tiny-notice-board"(TNS) is an open source PHP code package.

Without any database,it can help you set up a tiny notice board very quickly.

Demo:admin page | list page

Contact the author

How-to :

1.Download the source code,and put them into your web directory.

2.Visit 'TNS_admin.php' to manage your notices(add or delete).

3.Put the code below anywhere where you want to show the notices.

$yourTNSName = "sampleTNS";

// Don't change it. Or you must change the name in file "TNS_admin.php" together.

require_once("tnsSystem.class.php");//core class

$myTNS = new tnsSystem($yourTNSName);//initial the tns

$tnsContent = $myTNS->tns_content;//get all the notices in an array

//using "foreach" deal with it :

foreach($tnsContent as $value){

echo "$value";

}

Powered by Google Project Hosting