From: Steve W. <wai...@us...> - 2000-10-21 04:14:05
|
Update of /cvsroot/phpwiki/phpwiki In directory slayer.i.sourceforge.net:/tmp/cvs-serv4943 Modified Files: DBLIB.txt Log Message: Added 3 functions. No descriptions yet. Index: DBLIB.txt =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/DBLIB.txt,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** DBLIB.txt 2000/06/30 00:44:23 1.6 --- DBLIB.txt 2000/10/21 04:14:02 1.7 *************** *** 1,4 **** - $Id$ - This is a description of the database interface for PhpWiki. Regardless of what kind of data store is used (RDBMS, DBM files, flat text files) --- 1,2 ---- *************** *** 113,114 **** --- 111,119 ---- takes: db reference, the result set returned by InitMostPopular returns: the next row from the result set, as a PHP array type + + GetAllWikiPageNames($dbi) + GetWikiPageLinks($dbi, $pagename) + SetWikiPageLinks($dbi, $pagename, $linklist) + + $Id$ + |