$conn=mysql_connect(self::$host,self::$user,self::$password) or die("链接数据库失败".mysql_error());
应为
self::$conn=mysql_connect(self::$host,self::$user,self::$password) or die("链接数据库失败".mysql_error());