List-Cat.php

From Organic Design wiki
Revision as of 07:12, 14 January 2006 by Nad (talk | contribs) (newline problem)

<?

  1. Append article content with a list of article-names from category specified in properties

$db =& wfGetDB( DB_SLAVE ); $cl = $db->tableName( 'categorylinks' ); xwGetProperty( $properties, 'list-cat', $cat ); $article = trim( $article )."\n"; $result = $db->query( "SELECT cl_sortkey FROM $cl WHERE cl_to = '$cat'" ); while ( $row = mysql_fetch_assoc($result) ) $article .= "*[[".str_replace('_', ' ', $row['cl_sortkey'])."]]\n"; ?>