Description
Update: When new data is available
Nền tảng tra cứu mã bệnh ICD-10 chuyên nghiệp với 97,000+ mã chẩn đoán
Giới thiệu
ICD-10 Disease Encyclopedia là nền tảng tra cứu mã bệnh y tế được xây dựng với công nghệ hiện đại nhất, tối ưu SEO đỉnh cao và hiệu suất vượt trội. Sản phẩm phù hợp cho các tổ chức y tế, công ty bảo hiểm, startup health-tech, hoặc bất kỳ ai muốn xây dựng website tra cứu mã ICD-10 chuyên nghiệp.
Tổng quan kỹ thuật
| Thông số | Giá trị |
|---|---|
| Tổng dòng code | 5,998 LOC |
| Số file PHP | 20 files |
| Database | SQLite3 60MB |
| Số mã bệnh | 97,584 codes |
| Số chapter ICD-10 | 21 chapters |
| Tốc độ truy vấn | < 10ms |
| Tốc độ tìm kiếm | 20-50ms |
| Schema.org types | 7 loại |
| URLs trong Sitemap | 97,000+ |
Tính năng nổi bật
1. Cơ sở dữ liệu đầy đủ
- 97,584 mã ICD-10-CM – Phiên bản mới nhất từ WHO/CMS
- Phân loại theo 21 chapters chuẩn quốc tế
- Quan hệ parent-child giữa các mã
- Phân biệt mã billable/non-billable
- Mô tả ngắn và mô tả chi tiết cho mỗi mã
2. Tìm kiếm thông minh
- Full-text Search với SQLite FTS5
- Thuật toán xếp hạng BM25
- Highlight từ khóa trong kết quả
- Tốc độ tìm kiếm 20-50ms cho 97K+ records
- Fallback search khi FTS5 không khả dụng
3. Giao diện người dùng
- Thiết kế medical-themed chuyên nghiệp
- Responsive hoàn hảo trên mọi thiết bị
- Tailwind CSS framework hiện đại
- SVG decorations y tế (stethoscope, DNA, heartbeat…)
- Font Inter – dễ đọc, chuyên nghiệp
4. Điều hướng thông minh
- Duyệt theo 21 Chapters
- Duyệt theo Categories (non-billable codes)
- Duyệt theo chữ cái A-Z
- Breadcrumb navigation đầy đủ
- Pagination tối ưu (50 items/page)
5. Trang chi tiết mã bệnh
- Thông tin đầy đủ về mã ICD-10
- Hiển thị trạng thái Billable/Category
- Mã cha (parent code)
- Các mã con (child codes)
- Mã liên quan (related codes)
- FAQ tự động sinh (3-4 câu hỏi/trang)
- Clinical coding notes
SEO – Tối ưu công cụ tìm kiếm
Schema.org Structured Data (7 loại)
✓ Organization - Thông tin tổ chức
✓ WebSite - SearchAction cho Google
✓ WebPage - Metadata từng trang
✓ MedicalCondition - Dữ liệu y tế chuẩn
✓ Article - Bài viết/nội dung
✓ BreadcrumbList - Điều hướng phân cấp
✓ FAQPage - Câu hỏi thường gặp
Meta Tags đầy đủ (25+ tags/trang)
- Standard meta tags
- Open Graph (Facebook, LinkedIn)
- Twitter Cards
- Canonical URLs
- Robots directives
Sitemap XML động
- Sitemap Index tổng hợp
- Sitemap chapters (21 URLs)
- Sitemap diseases phân trang (~100 files x 1,000 URLs)
- Tổng: 97,000+ URLs được index
Robots.txt chuyên nghiệp
Hỗ trợ 40+ crawlers:
- Search Engines: Google, Bing, Yahoo, DuckDuckGo, Baidu, Yandex
- AI Crawlers: GPTBot, ClaudeBot, Gemini, PerplexityBot
- Social Media: Facebook, Twitter, LinkedIn, Pinterest
- SEO Tools: Ahrefs, SEMrush, Mo
Optimize Zero Click Search
Hiệu suất vượt trội
Database Optimization
PRAGMA cache_size = -64000 // 64MB cache
PRAGMA temp_store = MEMORY // RAM storage
PRAGMA mmap_size = 268435456 // 256MB memory-mapped I/O
PRAGMA synchronous = OFF // Maximum read speed
PRAGMA journal_mode = OFF // Read-only mode
Caching System
- File-based HTML caching
- TTL 1 giờ cho pages
- TTL 24 giờ cho sitemaps
- Cache key MD5 hashing
- Sub-millisecond cache hits
Frontend Performance
- Critical CSS inline (load ngay)
- Lazy loading images
- Preconnect Google Fonts
- DNS prefetch
- Content-visibility API
Server Optimization (.htaccess)
- Gzip compression (10+ file types)
- Browser caching 1 năm cho assets
- ETag optimization
- Cache-Control headers
Bảo mật cao cấp
File Protection
✓ Chặn truy cập config.php, db.php, functions.php
✓ Chặn file database (.db, .sqlite, .sqlite3)
✓ Chặn file backup (.bak, .backup, .swp)
✓ Chặn thư mục /data/, /cache/, /src/
✓ Tắt directory listing
HTTP Security Headers
X-Frame-Options: SAMEORIGIN
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Referrer-Policy: strict-origin-when-cross-origin
Input Sanitization
- Prepared Statements – Chống SQL Injection 100%
- htmlspecialchars() – Chống XSS
- Type validation với PHP 8.1+
- LIKE query escaping
Kiến trúc code sạch
PHP 8.1+ Modern
declare(strict_types=1); // Mọi file
// Type declarations đầy đủ
public function getDiseaseBySlug(string $slug): ?array
// Null coalescing
$page = $_GET['page'] ?? 1;
// Singleton pattern
private static ?Database $instance = null;
Cấu trúc thư mục
/
├── config.php # Cấu hình (401 LOC)
├── db.php # Database layer (636 LOC)
├── functions.php # Utilities (839 LOC)
├── index.php # Homepage
├── disease.php # Chi tiết mã bệnh
├── search.php # Tìm kiếm
├── chapters.php # Danh sách chapters
├── chapter.php # Chi tiết chapter
├── categories.php # Danh mục
├── letter.php # Duyệt theo chữ cái
├── sitemap.php # Sitemap động
├── 404.php # Trang lỗi đẹp
├── .htaccess # Apache config (305 LOC)
├── robots.txt # Crawler rules (247 LOC)
├── /data/
│ └── icd10.db # SQLite database (60MB)
├── /cache/ # HTML cache
└── /src/Views/layouts/
├── header.php # Header (394 LOC)
└── footer.php # Footer (212 LOC)
Database Methods (22 methods)
// Core queries
getDiseaseBySlug() // ~2ms
getDiseaseByCode() // ~2ms
getChildDiseases() // ~5ms
getParentDisease() // ~3ms
// Listing queries
getDiseasesByChapter() // ~10ms
getDiseasesByLetter() // ~8ms
getCategories() // ~8ms
// Search
searchDiseases() // ~20-50ms (FTS5)
// Statistics
getTotalDiseases() // ~1ms
getChapterStats() // ~10ms
getAlphabetIndex() // ~5ms
// Utilities
getRelatedDiseases() // ~5ms
getPopularDiseases() // ~3ms
getBreadcrumbs() // Dynamic
Accessibility (WCAG 2.1)
- Semantic HTML5 tags
- ARIA labels đầy đủ
- Keyboard navigation
- Focus indicators rõ ràng
- Skip to content link
- Color contrast chuẩn AA
- Screen reader compatible
Responsive Design
- Mobile-first approach
- Breakpoints: sm (640px), md (768px), lg (1024px), xl (1280px)
- Mobile hamburger menu
- Touch-friendly buttons (44px minimum)
- Flexible grid layouts
Các trang đi kèm
| Trang | Mô tả |
|---|---|
| Homepage | Dashboard thống kê, chapters, alphabet index |
| Search | Full-text search với FTS5 |
| Chapters | Danh sách 21 chapters |
| Chapter Detail | Codes trong chapter với pagination |
| Categories | Non-billable parent codes |
| Letter Browse | Duyệt A-Z |
| Disease Detail | Thông tin chi tiết mã bệnh |
| 404 | Trang lỗi với search & navigation |
| About | Giới thiệu |
| Contact | Liên hệ |
| Terms | Điều khoản sử dụng |
| Privacy | Chính sách bảo mật |
Yêu cầu hệ thống
Minimum Requirements
- PHP 8.1+
- Apache với mod_rewrite
- SQLite3 với FTS5 extension
- 100MB disk space
Recommended
- PHP 8.2+
- 256MB+ RAM cho database cache
- SSD storage
- HTTPS enabled
Cài đặt đơn giản
# 1. Upload source code
# 2. Import database (đã có sẵn)
# 3. Cấu hình domain trong config.php
# 4. Done!
Không cần MySQL, không cần Composer, không cần Node.js – Plug and Play!
Use Cases
1. Website tra cứu y tế
Xây dựng website tra cứu mã ICD-10 cho bệnh viện, phòng khám, cơ sở y tế.
2. Tích hợp hệ thống HIS
Sử dụng database và API để tích hợp vào phần mềm quản lý bệnh viện.
3. Công ty bảo hiểm
Tra cứu mã bệnh cho xử lý hồ sơ bảo hiểm y tế.
4. Đào tạo y khoa
Website tham khảo cho sinh viên y, điều dưỡng, kỹ thuật viên.
5. Health-tech Startup
Nền tảng cơ sở để xây dựng ứng dụng y tế.
So sánh với giải pháp khác
| Tính năng | ICD-10 Encyclopedia | Giải pháp khác |
|---|---|---|
| Số mã bệnh | 97,584 | 10,000-50,000 |
| Full-text Search | FTS5 + BM25 | LIKE query |
| Schema.org | 7 types | 0-2 types |
| Sitemap URLs | 97,000+ | 1,000-10,000 |
| Tốc độ query | <10ms | 50-200ms |
| AI Crawler support | 10+ bots | Không |
| Caching | Multi-layer | Basic/None |
| Security | 20+ measures | 5-10 |
| PHP Version | 8.1+ strict | 7.x |
| Database | SQLite optimized | MySQL basic |
Thống kê ấn tượng
╔══════════════════════════════════════════╗
║ 97,584 Mã bệnh ICD-10-CM ║
║ 21 Chapters y tế ║
║ 5,998 Dòng code chất lượng ║
║ 22 Database methods ║
║ 7 Schema.org types ║
║ 40+ Crawlers được hỗ trợ ║
║ 25+ Meta tags mỗi trang ║
║ 20+ Biện pháp bảo mật ║
║ <10ms Thời gian truy vấn ║
║ 97,000+ URLs trong sitemap ║
╚══════════════════════════════════════════╝
Điểm mạnh cạnh tranh
1. Hiệu suất đỉnh cao
Sub-10ms queries với 97K+ records, 256MB memory-mapped I/O, multi-layer caching.
2. SEO hoàn hảo
7 loại Schema.org, 97K+ sitemap URLs, AI crawler support, zero-click optimization.
3. Bảo mật enterprise
20+ biện pháp bảo mật, prepared statements, XSS protection, security headers.
4. Code chất lượng
PHP 8.1+ strict types, clean architecture, comprehensive documentation.
5. Dữ liệu y tế chuẩn
ICD-10-CM chính thức từ WHO/CMS, quan hệ phân cấp đầy đủ.
6. Plug & Play
Không cần MySQL, Composer, Node.js – chỉ cần PHP + Apache.
Khách hàng phù hợp
- Bệnh viện, phòng khám
- Công ty bảo hiểm y tế
- Health-tech startups
- Trường đại học y khoa
- Developers xây dựng ứng dụng y tế
- SEO agencies cần niche site y tế
![[Source Code PHP] ICD-10 Disease Encyclopedia - Premium Medical Code Platform](https://pseo.codes/wp-content/uploads/2025/11/Screenshot-2025-11-25-085852.png)
![[Source Code PHP] ICD-10 Disease Encyclopedia - Premium Medical Code Platform - Image 2](https://pseo.codes/wp-content/uploads/2025/11/screencapture-localhost-chapters-2025-11-25-08_57_27-scaled.png)
![[Source Code PHP] ICD-10 Disease Encyclopedia - Premium Medical Code Platform - Image 3](https://pseo.codes/wp-content/uploads/2025/11/screencapture-localhost-2025-11-25-08_56_30-scaled.png)
![[Source Code PHP] ICD-10 Disease Encyclopedia - Premium Medical Code Platform - Image 4](https://pseo.codes/wp-content/uploads/2025/11/screencapture-localhost-disease-a000-cholera-due-to-vibrio-cholerae-01-biovar-cholerae-2025-11-25-08_58_16.png)
![[Source Code PHP] ICD-10 Disease Encyclopedia - Premium Medical Code Platform - Image 5](https://pseo.codes/wp-content/uploads/2025/11/screencapture-localhost-chapter-infectious-parasitic-diseases-2025-11-25-08_57_59-scaled.png)
![[Source Code PHP] ICD-10 Disease Encyclopedia - Premium Medical Code Platform - Image 6](https://pseo.codes/wp-content/uploads/2025/11/screencapture-localhost-categories-2025-11-25-08_57_39-scaled.png)
![[Source Code PHP] – Pokemon Stats Database](https://pseo.codes/wp-content/uploads/2025/11/Screenshot-2025-11-19-182035-300x300.png)
![[Source Code PHP] - World Population Encyclopedia](https://pseo.codes/wp-content/uploads/2025/11/001-a-300x300.png)
![[Source Code PHP] Elevate Your Lifestyle Through Fitness](https://pseo.codes/wp-content/uploads/2025/11/Elevate-Your-Lifestyle-Through-Fitness-300x300.png)
Reviews
There are no reviews yet.