Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php/*** @package shop* @author Lars Tiefland <ltiefland@gmail.com>* @copyright 2012* @version $Id$*//*** @package shop* @author Lars Tiefland <ltiefland@gmail.com>* @copyright 2012* @version $Id$*/namespace Weban;class preise{public static function Liste( $a_id ){$sql = "SELECT*FROMpreiseWHEREartikel=$a_id";$res = $GLOBALS["db"]->query( $sql );while ( $row = $res->fetchRow() ){$staffel[$row["preis_index"]] = unserialize( $row["staffel"] );}return $staffel;}}?>