| 
<?php
/**
 * Description of imageSitemap
 *
 * @author Vivek
 */
 
 // Please do not change the limit more than 1000 in a single file as it will not be considered by the google.
 //There is a limit of 1000 URL's in a image sitemap
 // tutorial Demo Link - http://www.vivekmoyal.in/create-google-image-sitemap-using-mysql-and-php-dom/
 
 //$name = this is your sitemap file name
 //$tablename = this is your database table name
 include_once './imageSitemap.php';
 $sitemap=new imageSitemap();
 $sitemap->createSitemap($name, $tablename);
 |