public static function GetEntries() { // method for grab entrys if (!self::$connected) self::ConnectToDB(); //get everything from the portfolio database $result = mysql_query("SELECT * FROM items") or die(mysql_error()); //snag the array or something $row = mysql_fetch_array($result); return $row; }