Must read blogs

September 29th, 2007 bujes Posted in Earn with AdSense, Marketing, PHP, SEO 1 Comment »

Today I’ll write about some blogs which are full of quality articles for webmasters.


NetBusinessBlog.com

NBB was started in Januar 2007. In May 2007 it was sold for 50 000$. Monthly profit is about 1500$ and believe me, they know how to earn online.

John Chow
Online marketing guru John Chow earn unbelieveable big amounts of money online and he share tips and trick with us. Read blog, there are many contests, where you can win Microsoft Zune…

ProBlogger.net
Darren Rowse is a full-time blogger and owner of b5media(company, which publishe and market blogs). I like his tips.

Daily blog tips
Another blog with articles about blogging. It helps you make your blog better, more popular…

DoshDosh.com
Blog full of long and quality articles how to earn money online. Great design with touch of anime.

AddThis Social Bookmark Button

Dynamic Website (how to make one)

January 15th, 2007 info Posted in PHP No Comments »

It is very simple to make a dynamic website, but your host has to support PHP.
Add this code where you want your sub-sites to appear:
PS. The index file has to be index.php !

if (isset($_GET['site']))
{
include $_GET['site']."php";
}
else
{
include "default.php";
}
?>

Make a default.php file that will appear when someone visits a first page.If you want to make a link to a let say about me simply make it like this:
About me
And add a site about_me.php in same directory as index is ;)

Of course having a dynamic websites and addresses like index.php?bvlajsdflkj=asdfjl&alsdkfj=adskfja234 is not really SEO friendly :(
That is why I will soon show you how to use a rewrite ;)

AddThis Social Bookmark Button