
SEO - Links coded on a page using a foreach loop VS links written manually onto a page
- SEO |
$land_for_sale = array('<a href="url.com/texas_land">Land in Texas</a>', '<a href="url.com/colorado_land">Land in Colorado</a>', '<a href=url.com/california_land">Land in California</a>');
foreach ($land_for_sale as $links) {
echo $links . "<br>";
}
as opposed to manually coding them onto a page the standard way:
<a href="url.com/texas_land">Land in Texas</a>
<a href="url.com/colorado_land">Land in Colorado</a>
<a href="url.com/california_land">Land in California</a>
This may sound like an odd question, but using the foreach loop method would make site management for a client of mine easier
Who told me this? An ex Google web spam engineer.
What's your excuse?