Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** @author Lars Tiefland* @copyright 2012*/namespace Weban;class directory_bild{public static function Liste( $a_id ){$sql = "SELECTid,url,bild_indexFROMdirectory_bildWHEREdirectory=$a_id";$res = $GLOBALS["db"]->query( $sql );while ( $row = $res->fetchRow() ){$bild_index = $row["bild_index"];$ret[$bild_index] = $row;}return $ret;}}?>