Hi Mark,
All done, and if I hope it is right, but this system will not allow me to upload .sql .txt , so I have to cut and paste it in sorry mark...
Thanks from Alan
-- phpMyAdmin SQL Dump
-- version 2.11.5.2
--
http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Nov 12, 2008 at 10:12 PM
-- Server version: 5.0.51
-- PHP Version: 4.4.8
--
-- Database: `domains_vegan`
--
-- --------------------------------------------------------
--
-- Table structure for table `tblCategory`
--
CREATE TABLE `tblCategory` (
`intCatId` int(10) NOT NULL auto_increment,
`strCategory` varchar(100) NOT NULL,
PRIMARY KEY (`intCatId`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
--
-- Dumping data for table `tblCategory`
--
-- --------------------------------------------------------
--
-- Table structure for table `tblLinkSubCat`
--
CREATE TABLE `tblLinkSubCat` (
`intCatId` int(10) NOT NULL auto_increment,
`intSubCatId` varchar(100) NOT NULL,
PRIMARY KEY (`intCatId`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
--
-- Dumping data for table `tblLinkSubCat`
--
-- --------------------------------------------------------
--
-- Table structure for table `tblSubCategory`
--
CREATE TABLE `tblSubCategory` (
`intSubCatId` int(10) NOT NULL auto_increment,
`strSubCategory` varchar(100) NOT NULL,
PRIMARY KEY (`intSubCatId`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
--
-- Dumping data for table `tblSubCategory`
--