Archive for the ‘Web Design’ Category

Digg API: Grabbing a Random Digg Story with PHP

Saturday, February 16th, 2008

I read about the Digg API the other day, and I thought it was about time I played around with it.

There is a ton of cool stuff you can do with this. Basically, you send a request to the Digg server and it sends back whatever kind of information you want - category names, recent diggs, recent stories, archived stories, etc. You can read through the API to see everything you can do.

For now, we’ll focus on one nifty little trick - grabbing a random story from a given topic.
(more…)

More Backlinks, More Cash with Squidoo

Friday, February 15th, 2008

I’d seen this idea suggested on a forum, and it’s about time I got around to it. I created my first lens at Squidoo.

Why? I was able to work in a few nice backlinks to my site and my articles. I’ll earn some cash if it gets traffic of its own.
(more…)

How to Access XML Attributes in PHP Using SimpleXML

Friday, February 15th, 2008

A user on Programming Talk had a problem the other day. He was trying to build an XML parser to work with an xml data file (a character sheet from the WoW Armory).

His parser wasn’t working - because all of the information was stored in attributes instead of child elements. What’s the difference between the two? And how can we fix it?

Use SimpleXML.
(more…)

Avoid RevenueResponse - Possible Scam CPM Ad Program

Friday, February 15th, 2008

Google AdSense could be a great way to monetize your site. But if you’re CTR or eCPM is in the crapper, you may be looking for a new solution - an ad network that pays a decent flat rate per thousand impressions.

There are some reputable CPM programs out there (ValueClick seems to be among the best), but there are surely plenty of scams out there. I just read about one program - RevenueResponse - that seems like a site you should avoid using.
(more…)

How to Create an RSS Feed for Your Site in PHP

Thursday, February 14th, 2008

Most blogging platforms come with built-in support for RSS feeds. Why? It’s a great way for users to keep up to date on your new content. Instead of loading up a dozen favorite sites, they can look at one feed reader and then decide what to pursue further.

So what if you don’t use a blogging platform or CMS that creates a feed for you? You can create one yourself in PHP. It’s pretty simple.
(more…)

How to Alternate CSS Styles Using PHP

Wednesday, February 13th, 2008

There are a lot of situations in which you’d like to alternate CSS styles from one element to the next. Long tables, for example, look a lot nicer when the background color of the rows is alternated.

How do we do that? Some pretty simple PHP can help you accomplish this task and spice up your HTML/CSS.
(more…)

Use Xomba.com to Generate Backlinks for SEO

Monday, February 11th, 2008

Here’s another quick tip for creating targeted, dofollow backlinks - write Xomblurbs and Xombytes at Xomba.com.

What is Xomba.com? It’s just another site you can write for on the ‘net - and get a share of the revenue through your AdSense account. This makes it ripe for writing short articles that feature your own website - full of targetted backlinks.
(more…)

New Script: PHP Length Conversion Class

Sunday, February 10th, 2008

I was looking for a project to tackle today, and I decided to make a script that would convert lengths from one unit or system to another.

It doesn’t sound all that complicated - and it’s not. I had a working script in a few minutes, but I didn’t like it. It had too many functions to do conversions for individual units. I wanted this script to be pretty well abstracted so that I could easily add new unit types - and so that the source code for the class would be very short.
(more…)

How to Modify a Wordpress RSS Feed Widget with Rel=Nofollow

Saturday, February 9th, 2008

I just added an RSS feed widget to my site (see the lower right corner - the DZone links). I frequent dZone a decent amount, and I find a lot of the articles interesting.

However, after some thought I became concerned that ten sitewide external links might be a bit of a drain on my pagerank. If only I could add “rel=nofollow” to all those links. But there’s no option in the RSS Widget to do that.
(more…)

How to Integrate an RSS Feed Into Your Site with Simple XML

Saturday, February 9th, 2008

Practically every site today has an RSS feed. Now, you could be like everyone else and simply use this as a way to read information as it’s published.

Or, you could use RSS for what’s intended for - content syndication. With Simple XML, it’s a piece of cake to use an RSS feed to add a list of links to relevant articles on your page.
(more…)