I’ve recently just done this too ??
Easiest way:
1: Login to phpMyAdmin on your current webhost.
2: Select the wordpress database from the right hand menu
3: Click EXPORT
4: Make sure the following options are ticked
Structure (ticked)
– Add AUTO_INCREMENT value (ticked)
– Enclose table and field names with backquotes (ticked)
Data (ticked)
– Use hexadecimal for binary fields (ticked)
5. No compression
6. Click go! You’ll get output similar to the following:
— phpMyAdmin SQL Dump
— version 2.6.1
— https://www.phpmyadmin.net
—
— Host: localhost
— Generation Time: Feb 28, 2005 at 10:29 PM
— Server version: 4.1.10
— PHP Version: 5.0.3
—
— Database: wordpresshome
—
— ——————————————————–
—
— Table structure for table wp_categories
—
CREATE TABLE wp_categories
(
cat_ID
bigint(20) NOT NULL auto_increment,
…
…
…
… etc
7. Copy everything from CREATE_TABLE to the end.
8. Using phpMyAdmin on your home server, create a new database. Select it, and click “SQL” and paste the text into the window.
9. Click go! This will import your database ??