http://www.'.domain_short.'/
weekly
1
http://www.'.domain_short.'/emergency.html
weekly
0.9
http://www.'.domain_short.'/residential.html
weekly
0.9
http://www.'.domain_short.'/automotive.html
weekly
0.9
http://www.'.domain_short.'/commercial.html
weekly
0.9
';
$urls = '';
$count = 0;
foreach ($list_city as $city)
{
$city = strtolower(str_replace(" ", "-", $city));
if ($count != 0)
{
$urls[] .= 'http://'.$start_domain.''.$city.'.'.domain_short.'/';
}
$zipit = explode(",", $list_zip[$count]);
foreach ($zipit as $zip)
{
if ($zip != NULL)
$urls[] .= 'http://'.$start_domain.''.$zip.'.'.domain_short.'/';
}
$neighborhood_l = explode(",", $list_neighborhood[$count]);
foreach ($neighborhood_l as $neighborhood)
{
if ($neighborhood != NULL)
{
$neighborhoodu = strtolower(str_replace(" ", "-", $neighborhood));
$urls[] .= 'http://'.$start_domain.''.$neighborhoodu.'.'.domain_short.'/';
}
}
$count++;
}
$urls = array_unique($urls);
foreach ($urls as $ur)
{
echo '
'.$ur.'
weekly
0.8
';
}
foreach ($urls as $ur)
{
echo '
'.$ur.'emergency.html
weekly
0.7
';
echo '
'.$ur.'residential.html
weekly
0.7
';
echo '
'.$ur.'automotive.html
weekly
0.7
';
echo '
'.$ur.'commercial.html
weekly
0.7
';
}
$countall = 0;
foreach ($urls as $ur)
{
foreach ($car_manufacturers_list as $link)
{
if ($countall < 40000)
{
$linkit = ''.strtolower(str_replace(" ", "-", $link)).'-'.strtolower(str_replace(" ", "-", $subdomain_car_options)).'';
echo '
'.$ur.''.$linkit.'.html
monthly
0.6
';
}
$countall++;
}
}
echo '
';
?>