Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/freetag/freetag
- Owner: freetag
- License: other
- Created: 2010-11-12T19:48:32.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2015-05-03T07:14:05.000Z (almost 10 years ago)
- Last Synced: 2024-07-11T20:33:26.317Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 2.02 MB
- Stars: 44
- Watchers: 6
- Forks: 19
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: license.txt
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.sqlThen 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 directoryTested on
----------* RHEL ES3, PHP 4, MySQL 3.23
* Debian GNU/Linux, PHP4, MySQL 4.1.12