Hi,
the WHERE clauses is your answer. It's not enough tells to mysql you want count n tables, you have to join the tables.
So try with:
SELECT COUNT(*)
FROM table1,table2,table3
WHERE table1.tab2id=table2.id AND table2.tab3id=table3.id
I hope this helps.
[edit]
... reading better may be you find count(table1)+count(table2)+count(table3). As tells mrhappiness, you can't with a single query, or better, with a simple query (I think you can do it with some JOIN...).
[/edit]