Make Money With Affiliate Programs

earn money online affiliate program reviews and news

Archive for the ‘SEO’


Article Submission Service

Wanna let you guys know that I’m highly pleased with the new Macro Tool
from articlessubmissionservices.com

I use this service on a regular basis. Mainly because of this tool mentioned. Other services do not offer this (yet). Let’s face the facts. Most of the people just mass-submit their article and don’t change anything (It’s quite time-consuming to make 1 article unique for every directory isn’t it) so it may be true that you submit to 100s of directories but most of those articles never get indexed properly because they all look 100% identically.

However with this tool you can basically write one article with variables like {{Hello Sir||Dear Visitor||Heyhey!||Nice to meet you}} and create 100s or even 1000s of combinations, thus alot (!) of unique versions of your article with very little effort - which results in less or almost zero indexed duplicate articles.
As a bonus for every submission you get your RSS feed submitted to 100 directories or something.
If anyone can recommend a cheaper service with some sort of macro tool, let me know! thanks

SE search string for your dynamic landing page

Lately I discovered a nice little but useful script to make a landing page even more dynamic. This script delivers the Google search string provided trough the HTTP_REFERER to a variable in order to put it on i.e. into the title or meta tags on your landing page. This can improve quality score or quality of user experience who are visiting your site, if done correctly.

<?php
// take the referer
$referer = strtolower($_SERVER[’HTTP_REFERER’]);
// see if it comes from google
if (strpos($referer,”google”)) {
// delete all before q=
$a = substr($referer, strpos($referer,”q=”));
// delete q=
$a = substr($a,2);
// delete all FROM the next & onwards
if (strpos($a,”&”)) {
$a = substr($a, 0,strpos($a,”&”));
}
// we have the results.
$googlekeywords = urldecode($a);
}
?>

and then put <?= $googlekeywords ?> whereever you want to integrate the keyword in your landing page.

I created a customized one for Yahoo just for you guys:

<?php
// take the referer
$referer = strtolower($_SERVER[’HTTP_REFERER’]);
// see if it comes from yahoo
if (strpos($referer,”yahoo”)) {
// delete all before p=
$a = substr($referer, strpos($referer,”p=”));
// delete p=
$a = substr($a,2);
// delete all FROM the next & onwards
if (strpos($a,”&”)) {
$a = substr($a, 0,strpos($a,”&”));
}
// we have the results.
$yahookeywords = urldecode($a);
}
?>

call it by placing <?= $yahookeywords ?>

and last but not least MSN:

<?php
// take the referer
$referer = strtolower($_SERVER[’HTTP_REFERER’]);
// see if it comes from MSN
if (strpos($referer,”msn”)) {
// delete all before q=
$a = substr($referer, strpos($referer,”q=”));
// delete q=
$a = substr($a,2);
// delete all FROM the next & onwards
if (strpos($a,”&”)) {
$a = substr($a, 0,strpos($a,”&”));
}
// we have the results.
$msnkeywords = urldecode($a);
}
?>

call with <?= $msnkeywords ?>

feel free to customize this stuff even more :-)