<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Website Hosting</title>
	<atom:link href="http://websitehosting.pl/feed/" rel="self" type="application/rss+xml" />
	<link>http://websitehosting.pl</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 08 Feb 2012 14:22:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Creating a website using PHP Includes</title>
		<link>http://websitehosting.pl/2012/02/08/creating-a-website-using-php-includes/</link>
		<comments>http://websitehosting.pl/2012/02/08/creating-a-website-using-php-includes/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 14:21:30 +0000</pubDate>
		<dc:creator>Web Host</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[webistes]]></category>

		<guid isPermaLink="false">http://websitehosting.pl/?p=34</guid>
		<description><![CDATA[Creating a website using PHP Includes This is pretty basic stuff but for those who are not familiar with PHP includes and are finding it hard to start using PHP to build a website, this might help you on your way. I have had a few requests to write a simple tutorial on how to [...]]]></description>
			<content:encoded><![CDATA[
<p><strong>Creating a website using PHP Includes</strong><br /> This is pretty basic stuff but for those who are not familiar with PHP includes and are finding it hard to start using PHP to build a website, this might help you on your way. I have had a few requests to write a simple tutorial on how to build a website using PHP includes. This is written for Jim (no surname mentioned!) as he wanted to know the easiest way to build a website, maintain it and still have individual pages for good search engines ranking positions.</p>
<p>The method we are going to use as the example, will allow you to have as many pages are you require in your website from just a couple of pages or a couple of hundred. Using this method only the centre section on each page will be different (the page content). The top, side and bottom pages are all &#8216;included&#8217; automatically by PHP.</p>
<p style="text-align: left;" align="center">For instance, if you have a website of about 20 pages and you need to change the menu system or add a few more links, then by making use of PHP includes you can change just the one file (the included one) and then all others pages which utilise this included file will also be automatically updated. Just think of the time saved by changing the one file compared to changing 20 of them! From a designer&#8217;s point of view, it does not bear thinking about!<strong></strong></p>
<p style="text-align: left;" align="center"><strong>Back to what we were doing, the layout of our page will be like:-</strong></p>
<p><strong>Step One</strong> A good rule is to keep all files which are related to a particular website in the same folder. This prevents any dead links or linking errors which may creep in later on when the website gets quite large. This applies to all websites you create and not just this tutorial. Another good tip which is worth remembering is to keep all filenames you create for pages in lowercase.</p>
<p>Now we know to keep all our files in the same folder, create a folder and call it whatever you want, just remember where it is. Then open up your HTML editor and create a new page, save this page as template.php inside the folder you have just created. The extension of the page you create has to end with .php and not .html. All page extensions need to end with .php to allow PHP to parse the pages and include the includes! Type the following into the blank page in source view or if you know a little HTML, create the tables in WYSIWYG view.</p>
<p style="text-align: left;" align="center"><em>Using the code above, we have created a table with two columns. We will use the first column as our navigation menu.</em></p>
<p><strong>Step Two</strong> Now we have the actual page which will create our individual pages from, what we need now are the pages to include. So open up a new blank page in your editor and then save this blank page and call it header.php</p>
<p>Repeat this process for footer.php and menu.php. So now you should have 3 blank pages and the template.php page. You now have all the pages created that will form the basis of your website. Remember this is a tutorial only and you can add any colour format / style after you have got to know a bit about how to use the PHP includes in a website.</p>
<p>Pages you should have created are:-</p>
<ul>
	<li>template.php (Our main page which we will be using again later)</li>
	<li>header.php (Our included page header)</li>
	<li>footer.php (Our included footer page)</li>
	<li>menu.php (Our included page which will have our menu links on)</li>
</ul>
<p><strong>Step Three</strong> Open up the header.php page and add some text or logo. For our template just add some text which says: &#8220;Welcome to PHP Include Test&#8221;.</p>
<p>Open up the footer.php page and add a copyright notice. The footer can be used for other purposes including more links, but all this can be added later. We will just use it for our copyright notice.</p>
<p>Open up the menu.php page and add the following:</p>
<p>Home <br /> About Us <br /> Contact Us</p>
<p>Now we are happy with how our site is progressing, it is time to open up the template.php page. You will notice this page is blank and it will remain so. We are just going to use this page as a template page to create our other pages. So with this page open in your HTML editor, save this page as index.php.</p>
<p>Open this new page (index.php) as this is our new main index page. Repeat this process as many times as you want creating a number of pages to correspond with your website.</p>
<p>Now we have the foundation and pages created, add the text to all the pages you have just created and then open up the menu.php page again. You now have the number of links and pages that you need to add to this file.</p>
<p>For instance, if you created 3 pages from the template.php page (index.php, about.php, contact.php) you can now add these links to the page. Anything you now add to the pages header.php, menu.php footer.php will automatically appear on every page on your website if you use the template,.php page to create extra pages.</p>
<p>Now, to view the pages you have created you will need to upload them to a PHP enabled web server. Nearly all hosts support this now as standard. Point your browser to the uploaded index page and you should be able to see the basic layout and pages we have just created. Have a p[lay around adding text and images so you get the full idea of what PHP Includes can do. It&#8217;s a great way to create and make a website very maintainable.</p>
<p><strong>Footnote</strong> After following this tutorial, you should be able to create your own website which is very easy to maintain and consists of loads of pages with quality content for the search engines to find.</p>
]]></content:encoded>
			<wfw:commentRss>http://websitehosting.pl/2012/02/08/creating-a-website-using-php-includes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Blogging Software</title>
		<link>http://websitehosting.pl/2012/02/08/30/</link>
		<comments>http://websitehosting.pl/2012/02/08/30/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 05:10:44 +0000</pubDate>
		<dc:creator>Web Host</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[webistes]]></category>

		<guid isPermaLink="false">http://websitehosting.pl/?p=30</guid>
		<description><![CDATA[The blogging platform wars are getting really interesting and much of the discussion I find myself in lately revolves around what is happening with various CMS systems. The market can essentially be defined into 3 major camps: remotely hosted, self hosted, and community based systems. I have used pretty much every blogging platform available and [...]]]></description>
			<content:encoded><![CDATA[
<p>The blogging platform wars are getting really interesting and much of the discussion I find myself in lately revolves around what is happening with various CMS systems. The market can essentially be defined into 3 major camps: remotely hosted, self hosted, and community based systems. I have used pretty much every blogging platform available and each of them has its ups and downs. In this article I will cover the best options for each area taking into account price, usability, market share and of course SEO potential.</p>
<p>All of these products are either open source, completely frëe or have a functional frëe version.</p>
<p><strong>Remotely Hosted Blogging Software</strong><br /> (<strong>Note:</strong> I cannot really recommend any of these from an SEO stand point since optimizing a domain you do not own or control is obviously not a good marketing plan.)</p>
<p><a title="http://www.blogger.com/" href="http://www.blogger.com/">Blogger</a></p>
<p>Blogger is completely frëe and currently owns the majority of the remotely hosted user base, but not by a landslide. Bought out by Google in 1999, Blogger essentially fired up the blogging trend we see today. It is by far the easiest overall solution to use and, if you are a novice user looking to throw up some recipes or poetry, this is for you. Blogger is completely frëe and includes some great features like comments, photo blogging, and a basic community feel with user profiles. Because it is so dumbed down there are some features you may not find with Blogger that are only available through 3rd party add-ons. As a side note Blogger weblogs do quite well in the search engines and this was recently exploited with it being the first choice for sp@m blogs or splogs. A splog is a weblog used for the sole purpose of gaining inbound links or generating thousands of keyword stuffed pages with Adsense and the like. The recent Google Jagger update cleared a large portion of this up. Frëe.</p>
<p><a title="http://www.typepad.com/" href="http://www.typepad.com/">Typepad</a></p>
<p>Released in 2003, Typepad is a product of Sixapart, the makers of Movable Type. It is largely based on MT but there are some major enhancements and differences. Your blog can accomodate one or more photo albums with auto thumbnail generation. You can easily add music, books, and other media to Typelists, which grab a thumbnail from Amazon and other retailers for easy displaying in your sidebar. Typepad is also a great deal more technical than Blogger so a bit of HTML know-how is recommended. On that note, editing your blog to look the way you want is also quite easy and Typepad blogs are known for being very eye-pleasing, intuitive and easy to navigate. In Sixapart&#8217;s business model, Typepad is aimed at regular home and small business users while Movable Type is targeted at largër businesses or for internal intranets. Price: Basic, $4.95 a month; Premium, $8.95 to $14.95 a month.</p>
<p><a title="http://www.xanga.com/" href="http://www.xanga.com/">Xanga</a></p>
<p>These guys originated back in 1999 as a site for sharing book, music and movie reviews. Although it quickly morphed into a full blown blogging tool, Xanga still maintains the ability to run a powerful review site. Xanga pulls data from several retailers like Amazon.com including thumbnails, pricing and a cover. The software also is very usable by novices with a powerful WYSIWYG editor allowing for easy HTML editing, adding smilies, links, and other symbols. By using Blog rings it is also easy to interface with Xanga&#8217;s other 3 million users to share interests, ideas, and of course traffïc. Xanga comes in a frëe and $25 flavor.</p>
<p><strong>Mentions:</strong> <a title="http://www.blogsome.com/" href="http://www.blogsome.com/">Blogsome</a>, <a title="http://www.blogster.com/" href="http://www.blogster.com/">Blogster</a>, <a title="http://www.mindsay.com/" href="http://www.mindsay.com/">MindSay</a>, <a title="http://multiply.com/" href="http://multiply.com/">Multiply</a></p>
<p><strong>Self Hosted Blogging Software</strong></p>
<p><a title="http://wordpress.com/" href="http://wordpress.com/">WordPress</a></p>
<p>WordPress originally began as a mod of an older open source package known as B2. WP is MT&#8217;s biggest competition and is often the bain of endless WordPress vs Movabletype style threads around the internet. Although launched just over a year or so ago WP has really taken the blogosphere by storm. And with good reason &#8211; WordPress is completely frëe under GNU licensing and is packed with many features you will not find anywhere else. It is also much easier to install and get blogging for novice users and has a very large and helpful community. WP runs on PHP/mySQL and is quite scalable judging from some of the very large and trafficked sites I see using it. It also sports utilities to import files from Movable Type, Textpattern, Greymatter, Blogger, and B2. WordPress recently upped the ante when Yahoo recently included them on their hostíng packages, in addition to MT. I have to admit I am finding myself more and more digging WP and will likely convert Profitpapers to WP as I get time (it can be a biznitch). WordPress is frëe.</p>
<p><a title="http://www.movabletype.org/" href="http://www.movabletype.org/">Movable Type</a></p>
<p>Aside from maybe <a title="http://www.greymatter.com/" href="http://www.greymatter.com/">Greymatter</a> (the original open source blogging tool), Movabletype dominated the blogging market share in 2002-2004. Released in late 2001, Perl based Movable Type by Sixapart has maintained a large portion of the blogging market share, due mainly to the fact that there is a frëe version (supporting up to 3 weblogs) and that it is incredibly powerful, intuitive and easy to customize. Template driven Movable Type also sports one of the largest communities of developers and blogging enthusiasts around, meaning lots of support, idea sharing, and of course plugins. Movable Type can be configured to dynamically generate HTML, PHP or any other kind of pages you like, meaning it is incredibly scalable, fast, and loved by spiders. It is perhaps the most well known blogging software for SEO purposes and it is what currently powers Profitpapers and several of my other projects. Moveabletype is either Frëe with 3 authors, 1 weblog, and no support or $69.95 with unlimited weblogs, authors and full support.</p>
<p><a title="http://www.textpattern.com/" href="http://www.textpattern.com/">Textpattern</a></p>
<p>Textpattern is the brainchild of Dean Allen and was written to ease publishing of content for those not inclined to learn HTML. Like WP and MT, Textpattern runs on PHP and mySQL for easy administration, backups, and power. What really sets textpattern apart from the others is the integration of Textile. Textile is a tool for easily formatting content for those who do not know HTML. WP &amp; MT have modules for textile as well but it is native to the Textpattern system. Another bonus of the app is its superior handling of comment sp@m due to its smaller market share. On the blogs I maintain running WP and MT, I often find myself clearing out sp@m every day, whereas on some very busy textpattern sites I receive only manual comment sp@m (not bot driven). TP is open source.</p>
<p><strong>Mentions:</strong> <a title="http://www.blosxom.com/" href="http://www.blosxom.com/">Blosxom</a>, <a title="http://www.lifetype.net/" href="http://www.lifetype.net/">LifeType</a>, <a title="http://www.s9y.org/" href="http://www.s9y.org/">Serendipity</a></p>
<p><strong>Community Based Blogging Software</strong></p>
<p><a title="http://www.slash.com/" href="http://www.slash.com/">Slash</a></p>
<p>Waaaaay back in 1997, Rob &#8220;CmdrTaco&#8221; Malda launched a website known as Chips &amp; Dips, supplied via his student account at Hope College in Michigan. In 1999 Andover.net acquired Slashdot. Shortly after, the underlying code was released as open source software called Slash. Like Movable Type and Greymatter, Slash runs on Perl, but it also has established hooks into MySQL and a very strong track record of scaling to enormous traffïc levels. To give you an idea, the term &#8216;slashdotted&#8217; originated from acquiring a link on this nöw infamous and very popular tech news website &#8211; and consequently watching your servers melt. If you have nevër messed around with Slash, you really should as it is quite a powerful platform. Slash is open source.</p>
<p><a title="http://scoop.kuro5hin.org/" href="http://scoop.kuro5hin.org/">Scoop</a></p>
<p>Another well known Perl based community blogging software is Scoop. Scoop is the software that powers <a title="http://www.kuro5hin.org/" href="http://www.kuro5hin.org/">Kuro5shin</a>, <a title="http://www.dailykos.com/" href="http://www.dailykos.com/">DailyKos</a> and many other busy community weblogs. Scoop took the Slashdot idea and expanded on it, making the discussion rather than the news the focus of the application. Where Slashdot entries tend to have a link with added commentary pointing readers off the site, Scoop points to stories written by members of the community keeping the reader within your own weblog. Scoop is also well known for handling large volumes of traffïc and a large very technical community. Scoop is frëe .</p>
<p><a title="http://drupal.org/" href="http://drupal.org/">Drupal</a></p>
<p>Drupal is a well known open source community blogging platform with a very large community of users and developers. Not only is Drupal frëe but it is damn powerful. Instead of Perl, which is quite hard to decode at times, even if you are a fluent coder, Drupal uses a PHP/mySQL platform. Drupal is also a very community focused application with a built-in forum, download area, and hundreds of other home brewed mods and hacks. If you are looking for a lot of functionality, give Drupal a look &#8211; the project has become quite mature. It is also much easier to use and customize than either Scoop or Slash. Drupal is also another open source project.</p>
<p><strong>Mentions:</strong> <a title="http://www.livejournal.com/" href="http://www.livejournal.com/">LiveJournal</a>, <a title="http://phpnuke.org/" href="http://phpnuke.org/">PHP Nuke</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://websitehosting.pl/2012/02/08/30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 things to consider when choosing website hosting provider</title>
		<link>http://websitehosting.pl/2010/11/24/6-things-to-consider-when-choosing-your-website-hosting-provider/</link>
		<comments>http://websitehosting.pl/2010/11/24/6-things-to-consider-when-choosing-your-website-hosting-provider/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 06:08:36 +0000</pubDate>
		<dc:creator>Web Host</dc:creator>
				<category><![CDATA[Hosting Info]]></category>

		<guid isPermaLink="false">http://websitehosting.pl/?p=6</guid>
		<description><![CDATA[Things to consider when choosing a website hosting company for your website: Tech Support -Good tech support is a big factor to be looked at when choosing a website hosting company. If your website is down or you have a critical problem, you cannot afford to wait hours or even days for help. You need [...]]]></description>
			<content:encoded><![CDATA[
<p>Things to consider when choosing a website hosting company for your website: <strong></strong></p>
<p><strong>Tech Support</strong> -Good tech support is a big factor to be looked at when choosing a website hosting company. If your website is down or you have a critical problem, you cannot afford to wait hours or even days for help. You need immediate attention to your needs. <strong></strong></p>
<p><strong>Bandwidth</strong> &#8211; Data transfer (bandwidth) is measured in gigabytes. Images can take up a large amount of kilobytes, and file downloads can be several megabytes in size. If your website will have a lot of downloads, you will probably need many gigabytes of transfer &#8211; 10 gigabytes should be good to start with for most sites. Be careful about exceeding bandwidth &#8211; many web hosting providers charge for every extra gigabyte of bandwidth you use. Extra bandwidth charges can add up quickly.</p>
<p><strong>Control Panel</strong> &#8211; The control panel is the interface where you can administer your website functions such as uploading files, creating email accounts, checking your website hits (unique visitors are more important than hits) and statistics, adding more domains, installing scripts and making other changes to your website. The control panel that is offered by the hosting company you choose should be easy to use. Make sure you ask what control panels are offered with their hosting accounts. Control panels such as C-panel make adding scripts such as blogs, wiki&#8217;s, message forums, shopping carts, photo galleries and more a breeze. You can install these scripts in just a couple clicks. Ask prospective hosting companies if they have a demo control panel you can try before you commit to a hosting package. Most reputable website hosting companies offers a demo control panel you can try before you buy. <strong></strong></p>
<p><strong>Disk Space</strong> &#8211; Just like your home computer has a hard drive to store files and data on, your website is stored on a server. Most small businesses will start with a small website requiring less than 50 megabytes of storage but there will be some that need more storage space. Websites that use many images or that feature videos will require a lot more disk space than text data. Most website packages offer an ample amount of space for most new website owners. Disk space can be upgraded at a later date if required.</p>
<p><strong>Number of Domains Allowed Per Account</strong> &#8211; Another important factor that must be taken into account when choosing a web hosting company is the number of websites that allow you to host in a single account, some hosts allow only one domain per account while others will allow you to host limited to an unlimited number of domains or websites per one account, meaning several websites at the expense of one. Successful internet businesses usually expand beyond one domain and end up with multiple domain names. This makes targeting keyword phrases much easier. You can always upgrade your hosting account to accommodate your growth. Choosing the correct domain name for your business is also very important. Most of the good .com&#8217;s have been registered but there are some good domain names still available. Here are a few tips for choosing the right domain name for your business: -    Try to choose a .com or .net domain name -    If you use a hyphen, don&#8217;t use more than one hyphen in a domain name. -    Try to include your most important keyword phrase in your domain name for example: a flower shop in New York could use a name like: www.newyorkflowers. <strong></strong></p>
<p><strong>Other Considerations</strong> &#8211; depending on your needs, these factors should also be looked at when choosing a web host.</p>
<p>-    Do you need a Linux, UNIX or Windows Server?</p>
<p>-    Are scripts such as shopping carts, message forums, chat rooms, wiki&#8217;s and blogs included?</p>
<p>-    How many MySQL databases are you allowed?</p>
<p>-    What type of backups are offered?</p>
<p>-    Does the host offer a money back guarantee?</p>
<p>-    What type of Email features are offered?</p>
<p>-    Secure Certificate options (SSL)</p>
]]></content:encoded>
			<wfw:commentRss>http://websitehosting.pl/2010/11/24/6-things-to-consider-when-choosing-your-website-hosting-provider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Website Hosting Information Portal</title>
		<link>http://websitehosting.pl/2010/11/23/hello-world/</link>
		<comments>http://websitehosting.pl/2010/11/23/hello-world/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 06:24:34 +0000</pubDate>
		<dc:creator>Web Host</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://websitehosting.pl/?p=1</guid>
		<description><![CDATA[Welcome to Website Hosting information website! Choosing the right website hosting provider is a very important decision.  Whether your website is for a business, personal use, on-line store, hobby, information resource, or for any other purpose it is very important to choose the right service that will allow others to discover, view and visit your [...]]]></description>
			<content:encoded><![CDATA[Welcome to Website Hosting information website!

Choosing the right website hosting provider is a very important decision.  Whether your website is for a business, personal use, on-line store, hobby, information resource, or for any other purpose it is very important to choose the right service that will allow others to discover, view and visit your website.

Trying to choose the right hosting provider is a hard task for most people. There is a multitude of website hosting providers advertising their services all over the internet. Therefore, before you make your final choice, it is extremely important to educate yourself about website hosting and what type of hosting services you should consider for your website.]]></content:encoded>
			<wfw:commentRss>http://websitehosting.pl/2010/11/23/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

