All pastes #562968 Raw Edit

Unnamed

public php v1 · immutable
#562968 ·published 2007-06-12 23:43 UTC
rendered paste body
	public static function get( $sql, $return_one = false )	{		$query = DB::o()->query( $sql );				if ( $query !== false ) {			if ( $query->num_rows > 1 || !$return_one ) {				$rows = array();							while ( $row = $query->fetch_object() ) {					$rows[] = $row;				}			} else {				$rows = $query->fetch_object();			}		} else {			$rows = array();		}				return $rows;	}