	<rss version="2.0">
		<channel>
			<title>Cyberical / FREE / Computers and Internet Articles Directory</title>
			<link>http://www.cyberical.com</link>
			<description>Cyberical is a FREE Computers and Internet knowledge base Articles Directory.</description>
			<image>
				<title>Cyberical / FREE / Computers and Internet Articles Directory</title> 
				<url>http://www.cyberical.com/templates/cyberical_blue/en/images/xml_logo.gif</url> 
				<link>http://www.cyberical.com</link> 
			</image>
			<language>en</language>
			<pubDate>Wed, 10 Mar 2010 9:22:33 -0600</pubDate>
			<lastBuildDate>Wed, 10 Mar 2010 9:22:33 -0600</lastBuildDate>
			<docs>http://www.cyberical.com/projects/webpardaz/</docs>
			<generator>WebProcessor CMS 1.3</generator>
			<managingEditor>development@cyberical.com</managingEditor>
			<webMaster>development@cyberical.com</webMaster>
			<copyright>Copyright 2008, Cyberical.com, All rights reserved.</copyright>
			<category>Cyberical / FREE / Computers and Internet Articles Directory</category>
	
	<item>
		<title>
			Preface to PHP
		</title>
		<link>
			http://www.cyberical.com/blog/Preface_to_PHP.html
		</link>
		<description>
			&lt;h2&gt;&lt;img width=&quot;150&quot; height=&quot;96&quot; align=&quot;right&quot; alt=&quot;&quot; src=&quot;/userfiles/image/php/php.JPG&quot; /&gt;&lt;b&gt;Welcome, reader, to the world of PHP.&lt;/b&gt;&lt;/h2&gt;
&lt;p&gt;You're about to learn to use the most powerful web development language that can be found, and, what's more, you will do so with the minimum of fuss.&lt;/p&gt;
&lt;p&gt;I myself started programming in PHP back in 2001 when Perl was at its apogee, and after only two weeks, I had converted most if not all of my scripts into PHP. The reasons I were drawn so strongly towards PHP are many, but mainly it was ease of use &amp;ndash; even after having used Perl and ASP so.&lt;/p&gt;
&lt;p&gt;Through this blog, I hope for you to be able to switch to PHP in the same kind of time frame, if not less. Back when I made the switch, I was not lucky enough to have a resource like this to learn from!&lt;/p&gt;
&lt;p&gt;I am writing this blog with the goal of making the task of learning PHP something fun that you do not have to worry about. As such, you will find lots of information for newcomers, even those who have not programmed much before. On the other end of the scale, I must admit that I have worked hard to put in this blog lots of information on advanced functionality in PHP &amp;ndash; if you are a veteran user looking to take your PHP skills above and beyond where they are right now, I am hoping you will find there is lots to be had here.&lt;/p&gt;
&lt;p&gt;My goal for this blog is to produce a tutorial you can read in whatever order you want. Once you have the basics down, I encourage you to flick through the table of contents, find something that interests you most, and start reading from there.&lt;/p&gt;
&lt;p&gt;This tutorial will be write as a blog, which means you can either use the &amp;quot;Next&amp;quot; and &amp;quot;Back&amp;quot; links at the end of every page to browse your way through the tutorial, or you can just click the links that interest you most.&lt;/p&gt;
&lt;h2&gt;&amp;nbsp;&lt;/h2&gt;
&lt;h2&gt;Who this Tutorial is not for&lt;/h2&gt;
&lt;p&gt;If you don't fit into one of these categories, you are doing well already:&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;People who want more pictures than words&lt;/li&gt;
    &lt;li&gt;People who do not trust open-source software&lt;/li&gt;
    &lt;li&gt;People who aren't willing to commit a little time each day or every few days to try out code examples for themselves&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I cite the last category particular because of Flip Wilson's law: &amp;quot;You cannot expect to hit the jackpot if you do not put a few nickels in the machine&amp;quot;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;A note for programmers coming from Perl to PHP&lt;/h2&gt;
&lt;p&gt;Before using PHP, Perl was my language of choice for web applications, so I am not short of experience in the language.&lt;/p&gt;
&lt;p&gt;The common denominator between PHP and Perl is that they both have roughly the same roots: they are both Unix-like languages, loosely based on C. As such, one of the biggest advantages and the biggest disadvantages in having already learnt Perl is look-alikes. That is, functions or constants that look almost the same, but are different. Or, worse yet, functions that are called the same name but function differently.&lt;/p&gt;
&lt;p&gt;For example, the PHP function substr() looks just like the Perl function substr(). Happily enough, it works in precisely the same manner in both languages. On the other hand, a function like rtrim() looks to many like the Perl function chomp() because it trims whitespace from the right-hand side of a string. However, it is actually quite different in that the Perl version only trims new-line characters and returns the number of characters that have been trimmed, whereas the PHP version trims all whitespace by default, and returns the trimmed string.&lt;/p&gt;
&lt;p&gt;I strongly recommend that you consult a reference (either this tutorial or the PHP online manual) if you ever have any doubts as to how a function works. Don't just assume that because a function has the same name that it works in the same way!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;A note for programmers coming from C or Java to PHP&lt;/h2&gt;
&lt;p&gt;The syntax and thinking behind PHP is directly based upon C and C++, and it shares many similarities with these languages &amp;ndash; particularly when it comes to file handling and operating system functions. Having said that, PHP dispenses with much of the complexity seen in these languages &amp;ndash; like Java, PHP only uses references, with no concept of pointers. Similarly, PHP will also perform automatic garbage collection for you, as with Java, although the PHP garbage collection is somewhat less aggressive.&lt;/p&gt;
&lt;p&gt;To give you an idea of what you are getting yourself into, please read this short checklist below:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;PHP has object orientation, including access modifiers, inheritance, abstract and final classes, and more.&lt;/li&gt;
    &lt;li&gt;PHP does not have multiple inheritance. Instead, it follows Java's plan of allowing classes to implement an arbitrary number of interfaces.&lt;/li&gt;
    &lt;li&gt;PHP has flexible error handling using try/catch&lt;/li&gt;
    &lt;li&gt;PHP does not have operator overloading or function overloading&lt;/li&gt;
    &lt;li&gt;PHP has a flexible extension system based on C, so if you are familiar with C you can go ahead and make your own extensions.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Tips for success&lt;/h2&gt;
&lt;p&gt;Despite my best efforts to cut out as much fluff as possible, this will be&amp;nbsp;still quite a long tutorial, and programming is largely a dry topic. Having said that, learning PHP need not be a case of reading a chapter a day and memorising things as you go, and there are a number of tips I want to share with you before you start reading that will help you get the most out of this tutorial:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Don't try to memorise things in mass. I will make it quite clear if there is something that is very important for you to remember, but to be frank that will be rare &amp;ndash; trying to remember hundreds of functions or parameters or bits of jargon will only slow your learning if anything.&lt;/li&gt;
    &lt;li&gt;Don't rush yourself. Yes, it is fun to learn, and you are going to have a great time learning PHP I can promise you, but that does not mean you should try to hit the ground running. Take it easy, and you will remember things better, enjoy the tutorial more, and become a better programmer as a result.&lt;/li&gt;
    &lt;li&gt;Familiarise yourself with the language. Once you know a few bits and pieces, get started using them straight away. There is a surprising amount of functionality you can put together knowing just a few simple commands, and that's before you try hooking them all together into bigger and better things. So, get started using PHP as early as you feel comfortable.&lt;/li&gt;
    &lt;li&gt;Be creative. If you want to try out something crazy, go for it &amp;ndash; the only way you are going to learn is by trying, and, yes, failing too.&lt;/li&gt;
    &lt;li&gt;Program in an environment that suits you. This might be your bedroom, in the dark, in the early hours of the morning, or it might be on a laptop in a park somewhere. The great thing about programming is that there are no restraints on how you do it &amp;ndash; think of it like freestyle art.&lt;/li&gt;
    &lt;li&gt;Don't over-do it. If you are a caffeine hog like most geeks, sure, go ahead and drink coffee all you want - I get my fix from Mountain Dew, which has kept me going on many all-nighters. Having said that, you are not helping yourself if you fall asleep reading this tutorial night after night, and neither is it a good thing to program when you are half awake &amp;ndash; there is nothing worse than waking up at a desk the next morning and not having the foggiest clue how the code you wrote last night works.&lt;/li&gt;
    &lt;li&gt;Finally, remember that programming is supposed to be fun. If you find yourself hitting a mental brick wall repeatedly, you are doing something wrong. This tutorial is structured so that you keep getting newer and harder challenges to push your programming talents further, but feel free to stop at any point and take a walk in the park.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Enjoy the tutorial!&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/blog/Preface_to_PHP.html
		</guid>
	</item>
	<item>
		<title>
			5 Ways To Improve Your AdSense Earnings
		</title>
		<link>
			http://www.cyberical.com/article/5_Ways_To_Improve_Your_AdSense_Earnings.html
		</link>
		<description>
			&lt;p&gt;If webmasters want to monetize their websites, the great way to do it is through Adsense. There are lots of webmasters struggling hard to earn some good money a day through their sites. But then some of the &amp;ldquo;geniuses&amp;rdquo; of them are enjoying hundreds of dollars a day from Adsense ads on their websites. What makes these webmasters different from the other kind is that they are different and they think out of the box.&lt;/p&gt;
&lt;p&gt;The ones who have been there and done it have quite some useful tips to help those who would want to venture into this field. Some of these tips have boosted quite a lot of earnings in the past and is continuously doing so.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/5_Ways_To_Improve_Your_AdSense_Earnings.html
		</guid>
	</item>
	<item>
		<title>
			Google AdSense, The Easiest Money To Make Online
		</title>
		<link>
			http://www.cyberical.com/article/Google_AdSense_The_Easiest_Money_To_Make_Online.html
		</link>
		<description>
			&lt;p&gt;For the last couple of months, Google Adsense has dominated forums, discussions and newsletters all over the Internet. Already, there are tales of fabulous riches to be made and millions made by those who are just working from home. It seems that Google Adsense have already dominated the internet marketing business and is now considered the easiest way to making money online.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/Google_AdSense_The_Easiest_Money_To_Make_Online.html
		</guid>
	</item>
	<item>
		<title>
			3 Reasons Why AdSense Is Essential For Content Sites?
		</title>
		<link>
			http://www.cyberical.com/article/3_Reasons_Why_AdSense_Is_Essential_For_Content.html
		</link>
		<description>
			&lt;p&gt;&lt;strong&gt;To know why Adsense is essential for your content sites is to know first how this works.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
The concept is really simple, if you think about it. The publisher or the webmaster inserts a Javascript into a certain website. Each time the page is accessed, the Javascript will pull advertisements from the Adsense program. The ads that are targeted should therefore be related to the content that is contained on the web page serving the ad. If a visitor clicks on an advertisement, the webmaster serving the ad earns a portion of the money that the advertiser is paying the search engine for the click.&lt;br /&gt;
&lt;br /&gt;
The search engine is the one handling all the tracking and payments, providing an easy way for webmasters to display content-sensitive and targeted ads without having the hassle to solicit advertisers, collect funds, monitor the clicks and statistics which could be a time-consuming task in itself. It seems that there is never a shortage of advertisers in the program from which the search engine pulls the Adsense ads. Also webmasters are less concerned by the lack of information search engines are providing and are more focused in making cash from these search engines.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/3_Reasons_Why_AdSense_Is_Essential_For_Content.html
		</guid>
	</item>
	<item>
		<title>
			10 Tips To Build, Manage And Profit From An e-Commerce Website
		</title>
		<link>
			http://www.cyberical.com/article/Manage_And_Profit_From_An_eCommerce_Website.html
		</link>
		<description>
			&lt;p&gt;&lt;strong&gt;1. Organize your Catalog around Product Categories&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Many sites either provide a long list of products or lump them behind a search button, making it difficult to find them. Arrange your products into logical categories and subcategories, but do not overdo it. Research says it that most people get overwhelmed with more than 7 categories. The customer must be able to easily search any product without help.&lt;br /&gt;
&lt;br /&gt;
Your product should have a clear and high-quality picture, short and detailed specifications. If necessary add video or pictures of different view points (top angle, side view) along with the product specification.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/Manage_And_Profit_From_An_eCommerce_Website.html
		</guid>
	</item>
	<item>
		<title>
			7 Tips To Build High Traffic Web Site For Internet Home Work Income Business
		</title>
		<link>
			http://www.cyberical.com/article/7_Tips_To_Build_High_Traffic_Web_Site_For_Internet.html
		</link>
		<description>
			&lt;p&gt;&lt;strong&gt;1. Create Valuable Content For Internet Home Work Income Business.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
The purpose of my site is to offer value to the visitors. The value comes from my personal skills and personality, in my case it is writing content about how to improve my website visitors marketing skills.&lt;br /&gt;
&lt;br /&gt;
The idea of a valuable content is to make a visitor to act, to win his fears and to start thinking positively. I think that my web site visitor and I, we are in the same boat. I have to be able to offer him a real value, which will help the visitor in the way he wants. We both are in the internet home work income business and valuable content will make enduring partnerships.&lt;br /&gt;
&lt;br /&gt;
I admit, that it is hard to create a valuable content, but it is the concept, which is almost impossible to beat.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/7_Tips_To_Build_High_Traffic_Web_Site_For_Internet.html
		</guid>
	</item>
	<item>
		<title>
			Get Paid for Writing Articles Online
		</title>
		<link>
			http://www.cyberical.com/article/Get_Paid_for_Writing_Articles_Online.html
		</link>
		<description>
			&lt;p&gt;&lt;strong&gt;The High Demand for Writing Online&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The Internet is a vast network of information, and 90% of that information is written. Web masters and advertisers need fresh content all the time, and you can be the source of that content.&lt;/p&gt;
&lt;p&gt;Articles are needed for websites that sell everything from llama fur to tumbleweeds. Because of the wide variety of topics out there, you can always find something new to write about.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/Get_Paid_for_Writing_Articles_Online.html
		</guid>
	</item>
	<item>
		<title>
			How To Earn Money Through The Internet?
		</title>
		<link>
			http://www.cyberical.com/article/How_To_Earn_Money_Through_The_Internet.html
		</link>
		<description>
			&lt;p&gt;Nowadays, the Internet has become an invaluable resource for anyone looking for ways to earn money. There are several ways to earn money online. The most popular ones are listed below.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/How_To_Earn_Money_Through_The_Internet.html
		</guid>
	</item>
	<item>
		<title>
			115 Ways To Earn Money With Your Computer
		</title>
		<link>
			http://www.cyberical.com/article/115_Ways_To_Earn_Money_With_Your_Computer.html
		</link>
		<description>
			&lt;div&gt;&lt;strong&gt;Here is a list of ideas for your reference if you want to use your own PC to earn income.&lt;/strong&gt;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;1. Provide computer-based office management services for attorneys&lt;br /&gt;
2. Do word processing&lt;/div&gt;
&lt;div&gt;3. Do medical billing for doctors&lt;/div&gt;
&lt;p&gt;4. Do automated telemarketing&lt;/p&gt;
&lt;br /&gt;
&lt;div&gt;5. Manage a church&lt;/div&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/115_Ways_To_Earn_Money_With_Your_Computer.html
		</guid>
	</item>
	<item>
		<title>
			Small Business Websites: 10 Steps to Success
		</title>
		<link>
			http://www.cyberical.com/article/Small_Business_Websites:_10_Steps_to_Success.html
		</link>
		<description>
			&lt;p&gt;Tips on Designing Your Small Business Website&lt;br /&gt;
&lt;br /&gt;
There are all sorts of websites out there, and clearly some of them are working much harder than others. How can you be sure your website will be a champion?&lt;br /&gt;
&lt;br /&gt;
The key is website planning and strategy. Think of your website as an employee and make sure you hire the right one. If you approach this project with clear goals in mind, you will be rewarded with a lucrative asset to your business. What's most important? The questions below will get you started.&lt;/p&gt;
		</description>
		<pubDate>
			2009-04-27 14:21:20
		</pubDate> 
		<category>
					
		</category>
		<guid isPermaLink="true">http://www.cyberical.com/article/Small_Business_Websites:_10_Steps_to_Success.html
		</guid>
	</item>
		</channel>
	</rss>