<?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>MEMISO &#187; PHP</title>
	<atom:link href="http://www.memiso.com/solutions/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memiso.com</link>
	<description>Little Solutions For Big Problems</description>
	<lastBuildDate>Thu, 11 Mar 2010 20:19:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Optional Argument with User Defined Functions in PHP</title>
		<link>http://www.memiso.com/using-optional-argument-with-user-defined-functions-in-php.html</link>
		<comments>http://www.memiso.com/using-optional-argument-with-user-defined-functions-in-php.html#comments</comments>
		<pubDate>Thu, 11 Mar 2010 20:18:11 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Optional Arguments]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User-Defined Functions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=936</guid>
		<description><![CDATA[Hi everybody. After a long time, I am here again with my new articles. I thought it can be good to start with a little clue for PHP coders. 
Usage of PHP functions is so easy and practical. However, usually we need to write our own functions while we are making our applications.

1.1) User Defined [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/using-optional-argument-with-user-defined-functions-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking Database Connections and Getting Errors in PHP</title>
		<link>http://www.memiso.com/checking-database-connections-and-getting-errors-in-php.html</link>
		<comments>http://www.memiso.com/checking-database-connections-and-getting-errors-in-php.html#comments</comments>
		<pubDate>Wed, 25 Nov 2009 17:53:50 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Connection Errors]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Connections]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[Exceptions]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=910</guid>
		<description><![CDATA[We have talked about how to make database connections in PHP before. However, I realized that I have forgotten something which is so important. If you read that article or you are interested in PHP, you may know that we use odbc_connect() or mysql_connect() (or etc.) functions to connect some databases. These functions try to [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/checking-database-connections-and-getting-errors-in-php.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reading and Modifying PDF Files Using PHP</title>
		<link>http://www.memiso.com/reading-and-modifying-pdf-files-using-php.html</link>
		<comments>http://www.memiso.com/reading-and-modifying-pdf-files-using-php.html#comments</comments>
		<pubDate>Mon, 16 Nov 2009 01:24:53 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Adobe PDF]]></category>
		<category><![CDATA[Class]]></category>
		<category><![CDATA[Packages]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=815</guid>
		<description><![CDATA[Today, we are going to talk about getting content of PDF documents. In addition, PDF is a document format of Adobe Acrobat developed by Adobe and abridgment of Portable Document Format. After giving this unnecessary information, let&#8217;s learn how to read PDF documents using PHP.

To open and read PDF documents via PHP, we need to [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/reading-and-modifying-pdf-files-using-php.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Database Connections in PHP</title>
		<link>http://www.memiso.com/database-connections-in-php.html</link>
		<comments>http://www.memiso.com/database-connections-in-php.html#comments</comments>
		<pubDate>Fri, 02 Oct 2009 00:07:36 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Database Connections]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[MDB]]></category>
		<category><![CDATA[MS Access]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=339</guid>
		<description><![CDATA[
1.1) MYSQL Connection in PHP
We can use mysql_connect and mysql_select_db functions to create our connections. For closing the connections there is mysql_close function. These are basic functions of managing connections in PHP. There are also a lot of classes made by developers for free.

Sturcture 1.0:
12345&#60;?php
$ConnectionName = mysql_connect&#40;'MyHost', 'MyLogin', 'MyPassword'&#41;;
$DatabaseConnection = mysql_select_db&#40;'MyDatabaseName', $ConnectionName&#41;;
mysql_close&#40;$ConnectionName&#41;;
?&#62;

You can determine the [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/database-connections-in-php.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Generating Random Number in PHP</title>
		<link>http://www.memiso.com/generating-random-number-in-php.html</link>
		<comments>http://www.memiso.com/generating-random-number-in-php.html#comments</comments>
		<pubDate>Fri, 25 Sep 2009 00:48:20 +0000</pubDate>
		<dc:creator>Captain</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Random Number]]></category>
		<category><![CDATA[Randomization]]></category>
		<category><![CDATA[Randomize]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=315</guid>
		<description><![CDATA[Generating random numbers is very important in programming. We have to use random numbers to show a random record (Image, Saying, Article etc.) on our pages. Also, we can use random numbers for everything that we can imagine. In this article, we will see easiness of generating random numbers with PHP.

Structure 1.0: This is basic [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/generating-random-number-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Loops</title>
		<link>http://www.memiso.com/php-loops.html</link>
		<comments>http://www.memiso.com/php-loops.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 21:34:24 +0000</pubDate>
		<dc:creator>Mehmatrix</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Looping]]></category>
		<category><![CDATA[Loops]]></category>

		<guid isPermaLink="false">http://www.memiso.com/?p=230</guid>
		<description><![CDATA[We are going to talk about all looping statements in PHP. We have four looping methods.

I. While loop
II. Do … While loop
III. For loop
IV. Foreach loop
Most of PHP statements are similar to C statements. So, a programmer who knows C, can learn PHP easily.
I. While Loop
While statement loops the operations while specified conditions are true. [...]]]></description>
		<wfw:commentRss>http://www.memiso.com/php-loops.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
