<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Learn PHP - TUTORIALS</title>
	<link>http://www.tutorials4php.com</link>
	<description>Easy way to learn php &#38; MySQL</description>
	<pubDate>Sat, 29 Mar 2008 01:17:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>OOP In PHP (Object Oriented Programming in PHP)</title>
		<link>http://www.tutorials4php.com/14/oop-php-object-oriented-programming-in-php/</link>
		<comments>http://www.tutorials4php.com/14/oop-php-object-oriented-programming-in-php/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 01:08:11 +0000</pubDate>
		<dc:creator>chaabant</dc:creator>
		
		<category><![CDATA[OBJECT ORIENTED PROGRAMMING]]></category>

		<guid isPermaLink="false">http://www.tutorials4php.com/14/oop-in-php-object-oriented-programming-in-php/</guid>
		<description><![CDATA[This is a basic introduction on how to use OOP - Oriented Programming In php 
Declaring a Class




class myClass &#123;


// Class contents go here


&#125;




Instantiating an Object




$myClassInst = new myClass&#40;&#41;;




OOP Class Inheritance




class a &#123;


&#160;


function test&#40;&#41;


&#123;


echo &#34;a::test called&#34;;


&#125;


&#160;


function func&#40;&#41;


&#123;


echo &#34;a::func called&#34;;


&#125;


&#125;


&#160;


&#160;


class b extends a &#123;


&#160;


function test&#40;&#41;


&#123;


echo &#34;b::test called&#34;;


&#125;


&#125;


&#160;


class c extends b &#123;


&#160;


function test&#40;&#41;


&#123;


parent::test&#40;&#41;;


&#125;


&#160;


&#125;


&#160;


class d extends c &#123;


&#160;


function [...]]]></description>
		<wfw:commentRss>http://www.tutorials4php.com/14/oop-php-object-oriented-programming-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Occurrence of a word in a sentence using php</title>
		<link>http://www.tutorials4php.com/13/occurrence-of-a-word-in-a-sentence-using-php/</link>
		<comments>http://www.tutorials4php.com/13/occurrence-of-a-word-in-a-sentence-using-php/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 05:25:46 +0000</pubDate>
		<dc:creator>chaabant</dc:creator>
		
		<category><![CDATA[php questions answers]]></category>

		<guid isPermaLink="false">http://www.tutorials4php.com/13/occurence-of-a-word-in-a-sentence-using-php/</guid>
		<description><![CDATA[Can someone please post a code that will return a number of how many instances of a string are in a string? For example:
&#8220;my name is tim tim is a dumb name i hate people named tim&#8221;
I want a code to return &#8220;3&#8243; (for the 3 instances of tim) for that. Please help!
here is the [...]]]></description>
		<wfw:commentRss>http://www.tutorials4php.com/13/occurrence-of-a-word-in-a-sentence-using-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Generate Numbers in PHP</title>
		<link>http://www.tutorials4php.com/12/generate-numbers-in-php/</link>
		<comments>http://www.tutorials4php.com/12/generate-numbers-in-php/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 05:43:42 +0000</pubDate>
		<dc:creator>chaabant</dc:creator>
		
		<category><![CDATA[php questions answers]]></category>

		<category><![CDATA[random numbers]]></category>

		<guid isPermaLink="false">http://www.tutorials4php.com/12/generate-numbers-in-php/</guid>
		<description><![CDATA[I have no clue about programming and my knowledge only goes as far as excel! &#8230;was wondering if someone could lead me in the direction of what program to use to do this:
I basically need 50,000 numbers, each 11 digits long outputted into a text file (.txt)
For example 07850069737
The conditions are:
1st digit must be a [...]]]></description>
		<wfw:commentRss>http://www.tutorials4php.com/12/generate-numbers-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>rss feed to html</title>
		<link>http://www.tutorials4php.com/10/rss-feed-to-html/</link>
		<comments>http://www.tutorials4php.com/10/rss-feed-to-html/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 05:31:07 +0000</pubDate>
		<dc:creator>chaabant</dc:creator>
		
		<category><![CDATA[Source Code]]></category>

		<guid isPermaLink="false">http://www.tutorials4php.com/10/rss-feed-to-html/</guid>
		<description><![CDATA[This post is about how to take rss feeds and convert it to HTML for display issues .
Note : This is a basic methods , but the aim of it could be for affiliate marketing , anyone could take this and convert it to an ebay store using his affiliate id .
Since the rss feed [...]]]></description>
		<wfw:commentRss>http://www.tutorials4php.com/10/rss-feed-to-html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Data Types in PHP</title>
		<link>http://www.tutorials4php.com/9/data-types-in-php/</link>
		<comments>http://www.tutorials4php.com/9/data-types-in-php/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 23:29:06 +0000</pubDate>
		<dc:creator>chaabant</dc:creator>
		
		<category><![CDATA[PHP BASICS]]></category>

		<guid isPermaLink="false">http://www.tutorials4php.com/9/ta-types-in-php/</guid>
		<description><![CDATA[Data Types in PHP
In php there is different types of data , the most used are :
string   // binary data
boolean // true or false
int    // Integer
Integers  are numbers; Positive and negative numbers can be expressed with it).
Boolean  contain two values: false or true .
String Are text , it [...]]]></description>
		<wfw:commentRss>http://www.tutorials4php.com/9/data-types-in-php/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
