If i have a database with lets say Age Country Sex Hair Color If i want to have tabs where people can lists people in diffrent countries from A-Z and one tab where they can list people according to age from 0-99. What do i use to show this diffrent results from the database? Ajax or something?
depends on what you have in DB you should merge information about Age, Country, Sex, Hair Color into record of a "Person". and then when you want to display these information in tabs you can issues db command like first tab: select all persons order by country name second tab: select all persons order by person age these have nothing to do with AJAX I'd say it's more about DB structure and queries
hm, from quick google search: 1. how to query data from mysql using php(i assume that you use php) http://th.php.net/function.mssql-query 2. script to display the queried data in ajax http://www.dynamicdrive.com/dynamicindex17/ajaxtabscontent/ get your content from 1. and put it to display in 2. and that's it