@Braath Waate
HAHA not that fancy I'll go over it now.
1: Exported all clients from Quickbooks to a CSV file (option in the clients section)
2: Opened Front Acc. and entered the first client entry from the CSV Manually (Entered Customer, Branch and CRM Sections)
3: Opened the Database to look at the tables affected and the format (I used PhpMyAdmin on my server)
4: Exported each of the tables affected to CSV in PhpMyAdmin (0_debtors_master: 0_crm_persons:0_crm_contacts: 0_cust_branch:)
5: Copy and Paste the data from your QB Clients.CSV file into each of the exported FA DB CSV files in a spreadsheet editor (I used OpenOffice/Libre Office)
6: Import the DB CSV files on your server (You can use PHP commands i.e. LOAD DATA INFILE "/home/jason/clients.csv" but I used PhpMyAdmin as it has built-in CSV import.
Et Voila c'est fini, That is my fancy import process.