I would like to include different PHP include files in my PHP index page when a menu item (from CSS horizonal menu) is clicked. I dont want to reload the entair index page, just the include php file based on menu selection. Can somebody help please....
use Jquery and then use something like $.load() function : http://docs.jquery.com/Ajax/load#urldatacallback That way behind the scene with ajax easily done with Jquery you can call and then replace some html content with the returned content. Just keep in mind though if you don't somehow fall back to standard html links when javascript is disabled its gona hurt your SEO.