zRenard.com / mynotes /
| Description |
- Only simple notes, with main categorie and dynamic subcategories.
| Screenshots |
| Requirement |
- PHP 4.x.x could be find on www.php.net.
- MySql Database could be find on www.mysql.com
- Create Table using following SQL Script
CREATE TABLE `notes` ( `id` bigint(255) NOT NULL auto_increment, `catg` varchar(128) NOT NULL default '', `date` datetime NOT NULL default '0000-00-00 00:00:00', `titre` varchar(128) NOT NULL default '', `contenu` blob NOT NULL, PRIMARY KEY (`id`) ) TYPE=MyISAM PACK_KEYS=0 COMMENT='Notes';
- Change
$notes_database="main";and$link = mysql_connect("localhost", "", "")to match your database configuration.
| Downloading |
- Source Code : My Notes 1.0 - 26ko
| Translation |
- French : (Juste remplace following line in source code)
$lang_nomainnote="Aucune Note generale"; $lang_delnote="Attention, vous allez supprimer la note ?"; $lang_last_update="Derniere mise à jour :"; $lang_newcatg="... Nouvelle Categorie"; $lang_query_error="Erreur de requête :"; $lang_connect_error="Connection à la machine base de données impossible :"; $lang_database_error="Acces à la base de donnee impossible :";

