Douglas Karr's Articles on Martech Zone
-
Analytics & Testing
Marketing Analytics 101: Show Me the Money!
When I wrote an article for Talent Zoo last month, I wrote about leveraging automation and integration to maximize and leverage your online strategies, as well as the companies helping businesses to execute those marketing automation opportunities. A few minutes ago, I was sent an email from Andrew Janis of Evantage Consulting on a new Whitepaper they’ve released and the…
-
Marketing & Sales Videos
Mobile Textarea: How Many Characters Left
We’re up to Version 3.0 of the WordPress Mobile Plugin utilizing Connective Mobile’s API and Text Club feature. Connective Mobile has a 150 Character limit for your Mobile Marketing message that you want to broadcast to your subscribers. Rather than having someone wonder how many characters they have left, I modified Geeky Grrl’s little in-line JavaScript method to display the…
-
Who’s Twittering You?
Reputation managers can set up alerts on micro-blogging and communicate to consumers, supporters and criticisms directly. Here's how to set up an alert for those communications within minutes.
-
Content Marketing
5 Strategies to Get Attention on the Web
This might be an ironic post given the fact that my blog is in a slight decline in readership. The truth is that I know what’s causing it, but I lack the time right now to invest to stop it. No worries, though, I’ll turn it around soon! With that, I’ve been thinking a lot about what paths that companies…
-
Content Marketing
PHP: Using Is.gd API to Shorten URL
Just read an article on the benefits and pitfalls of shortening URLs over at SEOmoz. I utilize the Is.gd API to do this: function doCurlRequest($url, $variable, $value) { $api = $url."?".$variable."=".$value; $session = curl_init(); curl_setopt($session, CURLOPT_URL, $api); curl_setopt($session, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($session); curl_close($session); return $data; } function doShortenURL($longurl) { $url = "http://is.gd/api.php"; $variable = "longurl"; $shorturl = doCurlRequest($url, $variable,…