foreach help

Hey Guys,

Total newb when it comes to PHP but i need some help on editing a page on my site. The company who originally built the site I can no longer use so its up to me to fix :slight_smile:
https://liquidgrip.com/about/distributors-retailers/
If you look at that site you’ll see all the logos for all the sponsors. I have a list of url’s for each of the sponors so when someone clicks on the image it will take them to the sponsors site.

Here is the code i have. FYI i got some help from some IRC folks but only helped about 50% So all this code is up for change. Personally i think its on the right track but my actual foreach loop needs fixed which is line 17.

Thanks everyone for your help!

[php]
$sponsors = array(
‘body-building’ => ‘http://es.bodybuilding.com/store/liquid-grip/liquid-grip.html?_requestid=1337933’,
‘europa’ => ‘http://www.europasports.com’,
‘gnc’,
‘lucky-vitamin’,
‘max-muscle’,
‘planet-fastpitch’ => ‘http://www.planetfastpitch.com/products-page/accessories/liquid-grip-8-oz’,
‘rogue-fitness’ => ‘http://www.roguefitness.com/liquid-grip.php?SID=gnoti8nf49f44i0n0sl27aem87’,
‘team-vegas’,
‘the-vitamin-shoppe’,
‘usa-sports’ => ‘http://www.musclefoodsusa.com’,
‘us-gym-products’,
‘vinces-muscle-shop’
);
shuffle($sponsors);
?>
<?php foreach($sponsors as $company => $url) { <a href="<?php echo $url;



<img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height=“140” width=“140” />

[/php]

Here is the code, hope it works.
[php]

<?php $sponsors = array( 'body-building' => 'http://es.bodybuilding.com/store/liquid-grip/liquid-grip.html?_requestid=1337933', 'europa' => 'http://www.europasports.com', 'gnc', 'lucky-vitamin', 'max-muscle', 'planet-fastpitch' => 'http://www.planetfastpitch.com/products-page/accessories/liquid-grip-8-oz', 'rogue-fitness' => 'http://www.roguefitness.com/liquid-grip.php?SID=gnoti8nf49f44i0n0sl27aem87', 'team-vegas', 'the-vitamin-shoppe', 'usa-sports' => 'http://www.musclefoodsusa.com', 'us-gym-products', 'vinces-muscle-shop' ); shuffle($sponsors); foreach($sponsors as $company => $url) { ?>
   <a href="<?php echo $url; ?>">
    <div class="sponsor">
      <div class="sponsorFlip">
         <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" /> 
      </div>
    </div>
  </a>
<?php } ?>[/php]

One thing are you sure the

<a href="<?php echo $url; ?>">

was before

[code]

[/code]

in the original code?

Here is the original. Perhaps modify this one? I say that because im not sure where you ended your foreach. You’ll get me there i know it! Thanks!

[php]

<?php /* Template Name: About */ ?> <?php get_header(); ?> <?php if(have_posts()) while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?> <?php if(is_page(44)): ?>
<h2 class="text-left">United States</h2>
<?php
$sponsors = array(
	'body-building',
  'europa',
  'gnc',
  'lucky-vitamin',
	'max-muscle',
  'planet-fastpitch',
  'rogue-fitness',
  'team-vegas',         
  'the-vitamin-shoppe',
	'usa-sports',
  'us-gym-products',
  'vinces-muscle-shop'
);
shuffle($sponsors);
?>
<?php foreach($sponsors as $company): ?>
  <div class="sponsor">
    <div class="sponsorFlip">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
    </div>
  </div>
<?php endforeach; ?>
<div class="clear h-space10"></div>
<h2 class="text-left">International</h2>
<?php
$sponsors = array(
  'atari',
  'fit-4-fight',
  'fitness-sport',
  //'fitness-depot',
  'iconceptions',
  //'nutrition-club',
	'phantom-mma',
	'spelemat',
  //'supplement-source',
  'the-sport-station',
	'vantage-fighting'
);
shuffle($sponsors);
?>
<?php foreach($sponsors as $company): ?>
  <div class="sponsor">
    <div class="sponsorFlip">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
    </div>
  </div>
<?php endforeach; ?>
<div class="clear h-space10"></div>
<div class="text-center" style="font-size:16px;">
  For <img src="<?php bloginfo('url'); ?>/media/img/canada.gif" height="15" width="23" /> Canada orders
  <a target="_blank" href="http://www.liquidgripcanada.com">click here</a>
  and <img src="<?php bloginfo('url'); ?>/media/img/australia.gif" height="15" width="23" /> Australia orders
  <a target="_blank" href="http://www.bodybuilding.com/store/liquid-grip/liquid-grip.html;jsessionid=5E0E17CA3439B44075A6B00C8ECC82FC">click here</a>
</div>
<?php endif; ?> <?php get_footer(); ?>

[/php]

I’m assuming that when you click on the images nothing happens and you want it to link to sponsors site???

or is there any other issue too???

yup thats it. When someone clicks it…it just takes them to the sponsors site which i have a whole list of the sites…just need it to work for the few i posted to see the format and then i can put the rest of links in there.

thanks!

Ok. Please give me some time, I will see into it.

dude your awesome! Thanks again!

Try this and tell me if it works or not 8)

[php]

<?php /* Template Name: About */ ?> <?php get_header(); function shuffle_assoc($sponsors) { if (!is_array($sponsors)) return $sponsors; $keys = array_keys($sponsors); shuffle($keys); $random = array(); foreach ($keys as $key) $random[$key] = $sponsors[$key]; return $random; } ?> <?php if(have_posts()) while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?> <?php if(is_page(44)): ?>
<h2 class="text-left">United States</h2>
<?php

$sponsors = array(

            'body-building' => 'http://www.google.com',
            'europa' => 'http://www.yahoo.com',
            'gnc' => 'http://www.bing.com',
            'lucky-vitamin' => 'http://www.espn.com',
            'max-muscle' => 'www.php.net',
            'planet-fastpitch' => 'www.phphelp.com',
            'rogue-fitness',
            'team-vegas',
            'the-vitamin-shoppe',
            'usa-sports',
            'us-gym-products',
            'vinces-muscle-shop'
            );

$sponsors = shuffle_assoc($sponsors);
?>

<?php foreach($sponsors as $company => $c_url): ?>

  <div class="sponsor">
    <div class="sponsorFlip">
    <a href="<?php echo $c_url; ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
    </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<h2 class="text-left">International</h2>
<?php
$sponsors = array(
                'atari' => 'http://www.atari.com',
                'fit-4-fight' => 'http://www.abc.com',
                'fitness-sport' => 'http://www.xyz.com',
                //'fitness-depot',
                'iconceptions',
                //'nutrition-club',
                'phantom-mma',
                'spelemat',
                //'supplement-source',
                'the-sport-station',
                'vantage-fighting'
            );

$sponsors = shuffle_assoc($sponsors);

?>

<?php foreach($sponsors as $company => $c_url): ?>
  <div class="sponsor">
    <div class="sponsorFlip">
      <a href="<?php echo $c_url; ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
      </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<div class="text-center" style="font-size:16px;">
  For <img src="<?php bloginfo('url'); ?>/media/img/canada.gif" height="15" width="23" /> Canada orders
  <a target="_blank" href="http://www.liquidgripcanada.com">click here</a>
  and <img src="<?php bloginfo('url'); ?>/media/img/australia.gif" height="15" width="23" /> Australia orders
  <a target="_blank" href="http://www.bodybuilding.com/store/liquid-grip/liquid-grip.html;jsessionid=5E0E17CA3439B44075A6B00C8ECC82FC">click here</a>
</div>
<?php endif; ?> <?php get_footer(); ?>

[/php]

Dude it works! One slight issue though. I dont have a link at this time for one of the images which is “team-vegas” Is there a way around showing the image even if i dont have the link yet? Here is your code with my added links. If i leave any of them blank without a url the image doesnt populate.

[php]
?php /* Template Name: About */ ?>

<?php get_header(); function shuffle_assoc($sponsors) { if (!is_array($sponsors)) return $sponsors; $keys = array_keys($sponsors); shuffle($keys); $random = array(); foreach ($keys as $key) $random[$key] = $sponsors[$key]; return $random; } ?> <?php if(have_posts()) while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?> <?php if(is_page(44)): ?>
<h2 class="text-left">United States</h2>
<?php

$sponsors = array(

            'body-building' => 'http://es.bodybuilding.com/store/liquid-grip/liquid-grip.html?_requestid=1337933',
            'europa' => 'http://www.europasports.com',
            'gnc' => 'www.gnc.com',
            'lucky-vitamin' => 'www.luckyvitamin.com',
            'max-muscle' => 'www.php.net',
            'planet-fastpitch' => 'www.phphelp.com',
            'rogue-fitness' => 'http://www.roguefitness.com/liquid-grip.php?SID=gnoti8nf49f44i0n0sl27aem87',
            'team-vegas',
            'the-vitamin-shoppe' => 'www.vitaminshoppe.com',
            'usa-sports' => 'http://www.musclefoodsusa.com',
            'us-gym-products' => 'www.usgymproducts.com',
            'vinces-muscle-shop' => 'www.vincesmuscleshop.com'
            );

$sponsors = shuffle_assoc($sponsors);
?>

<?php foreach($sponsors as $company => $c_url): ?>

  <div class="sponsor">
    <div class="sponsorFlip">
    <a href="<?php echo $c_url; ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
    </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<h2 class="text-left">International</h2>
<?php
$sponsors = array(
                'atari' => 'test.com',
                'fit-4-fight' => 'http://www.fit4fight.dk/shop/liquid-grip-45-1634p.html',
                'fitness-sport' => 'http://www.xyz.com',
                //'fitness-depot',
                'iconceptions' => 'http://i-conceptions.com/novosti/innovatsionnyiy_grip_-_liquid_grip',
                //'nutrition-club',
                'phantom-mma' => 'www.phantom-mma.com',
                'spelemat' => 'www.spelemat.com',
                //'supplement-source',
                'the-sport-station' => 'www.sportstationusa.com',
                'vantage-fighting' => 'http://www.vantage-fighting.com/liquid-grip-45ml-16289'
            );

$sponsors = shuffle_assoc($sponsors);

?>

<?php foreach($sponsors as $company => $c_url): ?>
  <div class="sponsor">
    <div class="sponsorFlip">
      <a href="<?php echo $c_url; ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
      </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<div class="text-center" style="font-size:16px;">
  For <img src="<?php bloginfo('url'); ?>/media/img/canada.gif" height="15" width="23" /> Canada orders
  <a target="_blank" href="http://www.liquidgripcanada.com">click here</a>
  and <img src="<?php bloginfo('url'); ?>/media/img/australia.gif" height="15" width="23" /> Australia orders
  <a target="_blank" href="http://www.bodybuilding.com/store/liquid-grip/liquid-grip.html;jsessionid=5E0E17CA3439B44075A6B00C8ECC82FC">click here</a>
</div>
<?php endif; ?> <?php get_footer(); ?>

[/php]

Try again.

[php]

<?php /* Template Name: About */ ?> <?php get_header(); function shuffle_assoc($sponsors) { if (!is_array($sponsors)) return $sponsors; $keys = array_keys($sponsors); shuffle($keys); $random = array(); foreach ($keys as $key) $random[$key] = $sponsors[$key]; return $random; } ?> <?php if(have_posts()) while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?> <?php if(is_page(44)): ?>
<h2 class="text-left">United States</h2>
<?php

$sponsors = array(

            'body-building' => 'http://www.google.com',
            'europa' => 'http://www.yahoo.com',
            'gnc' => 'http://www.bing.com',
            'lucky-vitamin' => 'http://www.espn.com',
            'max-muscle' => 'www.php.net',
            'planet-fastpitch' => 'www.phphelp.com',
            'rogue-fitness',
            'team-vegas',
            'the-vitamin-shoppe',
            'usa-sports',
            'us-gym-products',
            'vinces-muscle-shop'
            );

$sponsors = shuffle_assoc($sponsors);
?>

<?php foreach($sponsors as $company => $c_url): ?>

  <div class="sponsor">
    <div class="sponsorFlip">
     <a href="<?php 

                  if(is_int($company)){
                      echo "#";
                    } else { echo $c_url;}
      ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
    </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<h2 class="text-left">International</h2>
<?php
$sponsors = array(
                'atari' => 'http://www.atari.com',
                'fit-4-fight' => 'http://www.abc.com',
                'fitness-sport' => 'http://www.xyz.com',
                //'fitness-depot',
                'iconceptions',
                //'nutrition-club',
                'phantom-mma',
                'spelemat',
                //'supplement-source',
                'the-sport-station',
                'vantage-fighting'
            );

$sponsors = shuffle_assoc($sponsors);

?>

<?php foreach($sponsors as $company => $c_url): ?>
  <div class="sponsor">
    <div class="sponsorFlip">
      <a href="<?php 

                  if(is_int($company)){
                      echo "#";
                    } else { echo $c_url;}
      ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
      </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<div class="text-center" style="font-size:16px;">
  For <img src="<?php bloginfo('url'); ?>/media/img/canada.gif" height="15" width="23" /> Canada orders
  <a target="_blank" href="http://www.liquidgripcanada.com">click here</a>
  and <img src="<?php bloginfo('url'); ?>/media/img/australia.gif" height="15" width="23" /> Australia orders
  <a target="_blank" href="http://www.bodybuilding.com/store/liquid-grip/liquid-grip.html;jsessionid=5E0E17CA3439B44075A6B00C8ECC82FC">click here</a>
</div>
<?php endif; ?> <?php get_footer(); ?>

[/php]

Oops :o I made changes in my own script. Try this one it’s yours.

[php]
?php /* Template Name: About */ ?>

<?php get_header(); function shuffle_assoc($sponsors) { if (!is_array($sponsors)) return $sponsors; $keys = array_keys($sponsors); shuffle($keys); $random = array(); foreach ($keys as $key) $random[$key] = $sponsors[$key]; return $random; } ?> <?php if(have_posts()) while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?> <?php if(is_page(44)): ?>
<h2 class="text-left">United States</h2>
<?php

$sponsors = array(

            'body-building' => 'http://es.bodybuilding.com/store/liquid-grip/liquid-grip.html?_requestid=1337933',
            'europa' => 'http://www.europasports.com',
            'gnc' => 'www.gnc.com',
            'lucky-vitamin' => 'www.luckyvitamin.com',
            'max-muscle' => 'www.php.net',
            'planet-fastpitch' => 'www.phphelp.com',
            'rogue-fitness' => 'http://www.roguefitness.com/liquid-grip.php?SID=gnoti8nf49f44i0n0sl27aem87',
            'team-vegas',
            'the-vitamin-shoppe' => 'www.vitaminshoppe.com',
            'usa-sports' => 'http://www.musclefoodsusa.com',
            'us-gym-products' => 'www.usgymproducts.com',
            'vinces-muscle-shop' => 'www.vincesmuscleshop.com'
            );

$sponsors = shuffle_assoc($sponsors);
?>

<?php foreach($sponsors as $company => $c_url): ?>

  <div class="sponsor">
    <div class="sponsorFlip">
            <a href="<?php 

                  if(is_int($company)){
                      echo "#";
                    } else { echo $c_url;}
      ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
    </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<h2 class="text-left">International</h2>
<?php
$sponsors = array(
                'atari' => 'test.com',
                'fit-4-fight' => 'http://www.fit4fight.dk/shop/liquid-grip-45-1634p.html',
                'fitness-sport' => 'http://www.xyz.com',
                //'fitness-depot',
                'iconceptions' => 'http://i-conceptions.com/novosti/innovatsionnyiy_grip_-_liquid_grip',
                //'nutrition-club',
                'phantom-mma' => 'www.phantom-mma.com',
                'spelemat' => 'www.spelemat.com',
                //'supplement-source',
                'the-sport-station' => 'www.sportstationusa.com',
                'vantage-fighting' => 'http://www.vantage-fighting.com/liquid-grip-45ml-16289'
            );

$sponsors = shuffle_assoc($sponsors);

?>

<?php foreach($sponsors as $company => $c_url): ?>
  <div class="sponsor">
    <div class="sponsorFlip">
     <a href="<?php 

                  if(is_int($company)){
                      echo "#";
                    } else { echo $c_url;}
      ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php echo $company; ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
      </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<div class="text-center" style="font-size:16px;">
  For <img src="<?php bloginfo('url'); ?>/media/img/canada.gif" height="15" width="23" /> Canada orders
  <a target="_blank" href="http://www.liquidgripcanada.com">click here</a>
  and <img src="<?php bloginfo('url'); ?>/media/img/australia.gif" height="15" width="23" /> Australia orders
  <a target="_blank" href="http://www.bodybuilding.com/store/liquid-grip/liquid-grip.html;jsessionid=5E0E17CA3439B44075A6B00C8ECC82FC">click here</a>
</div>
<?php endif; ?> <?php get_footer(); ?>

[/php]

no still doesnt come up. Here is the page with your code https://liquidgrip.com/about/distributors-retailers

np… i just added your new code and that one is still missing

ok. the placeholder is showing but image is broken. Does the placeholder appeared after updating the code or was it there already???

The image used to be there before the update but of course with no link :slight_smile:

Ok. Give it one more try.

[php]
?php /* Template Name: About */ ?>

<?php get_header(); function shuffle_assoc($sponsors) { if (!is_array($sponsors)) return $sponsors; $keys = array_keys($sponsors); shuffle($keys); $random = array(); foreach ($keys as $key) $random[$key] = $sponsors[$key]; return $random; } ?> <?php if(have_posts()) while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?> <?php if(is_page(44)): ?>
<h2 class="text-left">United States</h2>
<?php

$sponsors = array(

            'body-building' => 'http://es.bodybuilding.com/store/liquid-grip/liquid-grip.html?_requestid=1337933',
            'europa' => 'http://www.europasports.com',
            'gnc' => 'www.gnc.com',
            'lucky-vitamin' => 'www.luckyvitamin.com',
            'max-muscle' => 'www.php.net',
            'planet-fastpitch' => 'www.phphelp.com',
            'rogue-fitness' => 'http://www.roguefitness.com/liquid-grip.php?SID=gnoti8nf49f44i0n0sl27aem87',
            'team-vegas',
            'the-vitamin-shoppe' => 'www.vitaminshoppe.com',
            'usa-sports' => 'http://www.musclefoodsusa.com',
            'us-gym-products' => 'www.usgymproducts.com',
            'vinces-muscle-shop' => 'www.vincesmuscleshop.com'
            );

$sponsors = shuffle_assoc($sponsors);
?>

<?php foreach($sponsors as $company => $c_url): ?>

  <div class="sponsor">
    <div class="sponsorFlip">
            <a href="<?php 

                  if(is_int($company)){
                      echo "#";
                    } else { echo $c_url;}
      ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php
          if(is_int($company)){
                echo $c_url;
             } else { echo $company; }
       ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
    </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<h2 class="text-left">International</h2>
<?php
$sponsors = array(
                'atari' => 'test.com',
                'fit-4-fight' => 'http://www.fit4fight.dk/shop/liquid-grip-45-1634p.html',
                'fitness-sport' => 'http://www.xyz.com',
                //'fitness-depot',
                'iconceptions' => 'http://i-conceptions.com/novosti/innovatsionnyiy_grip_-_liquid_grip',
                //'nutrition-club',
                'phantom-mma' => 'www.phantom-mma.com',
                'spelemat' => 'www.spelemat.com',
                //'supplement-source',
                'the-sport-station' => 'www.sportstationusa.com',
                'vantage-fighting' => 'http://www.vantage-fighting.com/liquid-grip-45ml-16289'
            );

$sponsors = shuffle_assoc($sponsors);

?>

<?php foreach($sponsors as $company => $c_url): ?>
  <div class="sponsor">
    <div class="sponsorFlip">
     <a href="<?php 

                  if(is_int($company)){
                      echo "#";
                    } else { echo $c_url;}
      ?>">
      <img src="<?php bloginfo('url'); ?>/media/img/sponsors/<?php 
          if(is_int($company)){
                echo $c_url;
             } else { echo $company; }
      ?>.png" alt="<?php echo ucfirst(str_replace("-"," ",$company)); ?>" height="140" width="140" />
      </a>
    </div>
  </div>
<?php endforeach; ?>

<div class="clear h-space10"></div>
<div class="text-center" style="font-size:16px;">
  For <img src="<?php bloginfo('url'); ?>/media/img/canada.gif" height="15" width="23" /> Canada orders
  <a target="_blank" href="http://www.liquidgripcanada.com">click here</a>
  and <img src="<?php bloginfo('url'); ?>/media/img/australia.gif" height="15" width="23" /> Australia orders
  <a target="_blank" href="http://www.bodybuilding.com/store/liquid-grip/liquid-grip.html;jsessionid=5E0E17CA3439B44075A6B00C8ECC82FC">click here</a>
</div>
<?php endif; ?> <?php get_footer(); ?>

[/php]

yup you got it!

Thanks so much!!!

Sponsor our Newsletter | Privacy Policy | Terms of Service