Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/freetag/freetag

Simple tagging library in PHP/MySQL
https://github.com/freetag/freetag

Last synced: 4 months ago
JSON representation

Simple tagging library in PHP/MySQL

Awesome Lists containing this project

README

        

Freetag
=======

Freetag is a simple tagging library for PHP/MySQL applications.

Getting started
----------------

* Copy files into a subdirectory on your server
* Load the mysql schema from freetag.sql

Then load the library like this:

```
require_once('freetag/freetag.class.php');

$freetag_options = array (
'db_user' => null,
'db_pass' => null,
'db_host' => null,
'db_name' => null,
'table_prefix' => null
);

$freetag = new freetag($freetag_options);
```

Documentation
--------------

* See FreetagImplementationGuide.pdf for explanations and sample code
* Full documentation can be found in the doc directory

Tested on
----------

* RHEL ES3, PHP 4, MySQL 3.23
* Debian GNU/Linux, PHP4, MySQL 4.1.12