| |
|
| |
 |
| |
| 2010-01-22
Osirion to launch overhauled web siteIt is long overdue but it is finally here (well, soon). |
|
|
| |
| 2008-05-10
Internet fraud on the riseDuring 2008, incidents of cybercrime can be expected to climb, as criminals around the world capitalise on the opportunities the Internet provides for them to reap substantial financial rewards with a relatively low risk of getting caught and punished. |
| |
 |
| |
2008-01-14
"New era, yet classic, a fantastic designer with many talents..."
|
|
| |
2008-01-14
"Thanks, we checked out the site this weekend [and] we are really stoked! It really is what we are looking for..."
|
| |
 |
| |
2008-05-10
Creating an RSS Feed Using PHPCreating a script which outputs an RSS feed is almost easier than going to Google and finding one to integrate into your project. In fact, if the script you're trying to add this ability to doesn't already have RSS feeds, chances are you're best off writing it from scratch anyway, that way the code is targeted directly towards your problem. In this brief web development tutorial, I'll show you a quick and clean way to integrate RSS using PHP.
|
|
| |
2008-04-06
SEO Tips Using PHPThere are a lot of search engine optimisation characteristics to a page, and using these tips combined with the power of PHP will allow you to give your pages so much more SEO and ranking power.
|
| |
We Accept:
 |
|
SEO Tips Using PHP
2008-04-06
In web development, often some of the small things tend to get overlooked in SEO. One easy way to fix this in websites run by content management systems (CMS) written in PHP is to use the data it provides to further enhances your SEO. In this brief tutorial we'll explore a few key methods that can help you increase your rankings effectively.
Obviously most CMS systems, or even custom sites written in PHP will usually use it to dynamically create the site's title tag. However, don't forget about the meta tags for descriptions and keywords. If you're not using the information in your database to create accurate meta tags, you're wasting some of the available SEO that you could be taking advantage of. For example, changing code like this: <title><?PHP echo $article->article_title();?></title> to something like this: <title><?PHP echo $article->article_title();?></title> <meta name=”Keywords” content=”<?PHP echo $article->article_tags(',');?>”> <meta name=”Description” content=”<?PHP echo $article->article_desc(255);?>”> To continue in this line of thinking, you could add this alt tag to images in your document: <img src=”border-canada.png” /> to this, which will give the image alt tags based off it's tags: <img src=”border-canada.png” alt=”<?PHP echo $article->article_tags(',');?>” /> Here's something aimed at a more advanced web development coder. This applies to site's that have a members system. Essentially the principal is to hide the irrelevant guest information (such as login forms, forgot password pages, as well as header or sidebar content that only applies to humans.) Now you don't want to selectively give the bots one thing and a human another to an extreme, as you can be penalized for this, so this technique should only be used in good taste and to benefit the end user. Information such as a user's post count or join date are not relevant to your potential visitor's search, so why include it?
The technique to hide this information will vary from CMS to CMS, but the principal is the same. Detect whether a bot is viewing the page, and if so, conditionally exclude content that you do not want to load.
So there's a few ways you can use PHP to your advantage to gain extra search engine optimization on your web development projects.
View other articles in the Web Development category.
View other articles in the PHP sub-category. |