Hello, I need help with creating sitemap for gooele and the other search engine websites. I have a portal www.alnaddy.com, and a lot of mini sites unders this domain (folders), as: www.alnaddy.com/cars www.alnaddy.com/women www.alnaddy.com/horoscope www.alnaddy.com/tran www.alnaddy.com/music .... and more. Every minusite has own data (articles) in database. The main website-portal (www.alnaddy.com) get info from those ministes. I genereted sitemap.xml using php, you can see it at: http://alnaddy.com/sitemap.xml I read some articles, also at google webmaster, and see an example for generating sitemap.xml for google <urlset> <url> <loc>http://www.google.com/</loc> <priority>1.000</priority> </url> <url> <loc>http://www.google.com/3dwh_dmca.html</loc> <priority>0.5000</priority> </url> </urlset> it's so simple, but i wanna create more channels and sub tags in the sitemap. something like : <urlset> <women> <title>women ministe links</title> <url> <loc>http://www.google.com/</loc> <priority>1.000</priority> </url> <url> <loc>http://www.google.com/3dwh_dmca.html</loc> <priority>0.5000</priority> </url> </women> <cars> <title>cars ministe links</title> <url> <loc>http://www.google.com/</loc> <priority>1.000</priority> </url> <url> <loc>http://www.google.com/3dwh_dmca.html</loc> <priority>0.5000</priority> </url> </cars> .... </urlset> can i do that? is it the right way for google search engine and others search websites(yahoo, msn,...) ? please help with simple code. Thanks