Internet Marketing Tools|Strategies|Guides|Course Reviews|And Tips
Useful Scripts
Adding Stumbleupon To Your Website
Apr 14th
You have to do Social Bookmarking to get backlinks from those sites to your site. Stumbleupon is one such site.
Add a StumbleUpon badge to your site so your visitors can easily submit your content to StumbleUpon and you can start enjoying additional traffic from StumbleUpon users who want to see content like yours! Simply copy and paste the code into your site and start receiving free exposure on StumbleUpon.
<script src="http://www.stumbleupon.com/hostedbadge.php?s=1&r=www.yoursite.com"></script>
- Edit
single.phpof your WordPress theme. - Find the following line (or similar line, depending on your theme file) in
single.phportheloop.php: <?php the_content("<p class=serif>Read the rest of this entry</p>"); ?> - Immediately after the line, add the More >
Date Script For your Newsletter Or Website
Apr 9th
Just copy & paste it into the source code of your website:
<p align="right"> <font style="font‐size: 10pt; " face="Arial"> <span class="text">Updated:</span></font><font style="font‐size: 10pt; background‐color:#FFFFFF" face="Arial"> <script language="JavaScript1.2"> <!‐‐ Begin var months=new Array(13); months[1]="January"; months[2]="February"; months[3]="March"; months[4]="April"; months[5]="May"; months[6]="June"; months[7]="July"; months[8]="August"; months[9]="September"; months[10]="October"; months[11]="November"; months[12]="December"; var time=new Date(); var lmonth=months[time.getMonth() + 1]; var date=[time.getDate() ‐ 3]; var year=time.getYear(); if (date < 4 ) date = 28 lmonth=months[time.getMonth() ]; if (year < 2000) // Y2K Fix, Isaac Powell year = year + 1900; // http://onyx.idbsu.edu/~ipowell document.write("<b>" + lmonth + " "); document.write(date + ", " + year + "</b>"); // More >
PHP Code To Capture ID From Adwords To Clickbank
Apr 6th
<?php $seedvar=$_GET['id']; ?>
This is how you write every link to Clickbank from your landing page:http://yourclickbankid.IMeye.hop.clickbank.net/?tid =<?php echo $seedvar;?>
Replace “yourclickbankid” with yours and "IMeye" with the id of whatever you’re promoting.
Dynamic Landing Pages – Script
Apr 6th
Create one page whose content changes depending on the information that is passed on to the page.
Same page, different content.
And the programming is pretty simple:
<script type="text/javascript"> var objURL = new Object(); window.location.search.replace(new RegExp( "([^?=&]+)(=([^&]*))?", "g" ), function( $0, $1, $2, $3 ){objURL[ $1 ] = $3;}); var passed_string = "" for (var strKey in objURL){ passed_string = passed_string + " " + objURL[ strKey ] } var strReplaceAll = passed_string; var intIndexOfMatch = strReplaceAll.indexOf( "_" ); while (intIndexOfMatch != -1){ strReplaceAll = strReplaceAll.replace( "_", " " ) intIndexOfMatch = strReplaceAll.indexOf( "_" ); } document.write('<h1> The search term passed was: ' More >


