<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>SamplePhpCodes.com</title>
	<link>http://www.samplephpcodes.com</link>
	<description>Get PHP Code Help, Sample PHP Scripts,PHP Script Demos</description>
	<lastBuildDate>Fri, 05 Mar 2010 16:11:50 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>PHP Introduction</title>
		<description><![CDATA[Introduction to PHP
Introduction
PHP is  a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. PHP stands for PHP: Hypertext Preprocessor. It is a server-side scripting language, like ASP. 
                [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-basics/php-introduction/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-introduction</link>
			</item>
	<item>
		<title>Installing PHP</title>
		<description><![CDATA[Installation

          Download PHP      
  
          Download PHP for free from: http://www.php.net/downloads.php

 Download MySQL Database

          Download MySQL for free from: http://www.mysql.com/downloads/index.html

   [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-basics/installing-php/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=installing-php</link>
			</item>
	<item>
		<title>PHP Syntax</title>
		<description><![CDATA[Syntax 

A PHP scripting block always starts with . A PHP scripting block can be placed anywhere in the document.
&#60;?php
?&#62;
A PHP file normally contains HTML tags, just like an HTML file, and some PHP scripting code.

First PHP- enables page

Create a file named hello.php and put it in your web server&#8217;s root directory (DOCUMENT_ROOT) with the [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-basics/php-syntax/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-syntax</link>
			</item>
	<item>
		<title>PHP Variables</title>
		<description><![CDATA[Variables 
   Variables are used for storing a values, like text strings, numbers or arrays. When a variable is set it can be used over and over again. Variables in PHP are represented by a dollar sign followed by the name of the variable. The variable name is case-sensitive. 
The correct way of [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-basics/php-variables/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-variables</link>
			</item>
	<item>
		<title>PHP Strings</title>
		<description><![CDATA[String variables are used for values that contains character strings. A string can be used directly in a function or it can be stored in a variable.
For example    

&#60;?php
$txt=&#34;Hello World&#34;;
echo $txt;
?&#62;

The output of the code
           Hello World

The Concatenation Operator

    [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-basics/php-strings/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-strings</link>
			</item>
	<item>
		<title>Creating a File In PHP</title>
		<description><![CDATA[File Create 

The fopen function needs two important pieces of information to operate correctly. First, we must supply it with the name of the file that we want it to open. Secondly, we must tell the function what we plan on doing with that file (i.e. read from the file, write information, etc).
Since we want [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-file-functions/creating-a-file-in-php/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=creating-a-file-in-php</link>
			</item>
	<item>
		<title>PHP File Operations In Different Modes</title>
		<description><![CDATA[File Open 
A file can be opened using fopen function. Two parameters that must pass to this function are
 file name and mode. On success fopen returns a file pointer , or  FALSE on error.  Modes that can be used with fopen are  r,  r+,  w, w+,  a,  [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-file-functions/php-file-opeartion-in-different-modes/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-file-opeartion-in-different-modes</link>
			</item>
	<item>
		<title>PHP – File Read function</title>
		<description><![CDATA[File Read 
 fread function is used to read content of a file. file pointer and number of bytes to be read are  parameters that fread function required. fread returns string read on success or FALSE on failiure.
           Example of reading content of a [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-file-functions/php-%e2%80%93-file-read-function/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-%25e2%2580%2593-file-read-function</link>
			</item>
	<item>
		<title>PHP File write function</title>
		<description><![CDATA[File Write 

fwrite function is used to write  contents to a file.  fwrite needs  file pointer and  contents of type  string  as parameters. fwrite returns number of bytes written on
success  , or FALSE on error.
             Example [...]]]></description>
		<link>http://www.samplephpcodes.com/php-tutorials/php-file-functions/php-file-write-function/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=php-file-write-function</link>
			</item>
	<item>
		<title>Ajax examples with php</title>
		<description><![CDATA[Ajax is a catchy name for a type of programming made popular in 2005 by Google and other big web developers. Ajax loosely stands for Asynchronous Javascript And XML, but that just sounds like techno jargon to many people.

&#60;!--
AJAX CODE BY samplephpcodes.com	

makeGetRequest('file.php?uid=&#60;?php echo $fid; ?&#62;',result_div_id)

--&#62;
&#60;!-- ++++++++++++++++++++++++++++++++++++++++ --&#62;

&#60;script language=&#34;javascript&#34;&#62;

function createRequestObject() {

    var tmpXmlHttpObject;

 [...]]]></description>
		<link>http://www.samplephpcodes.com/sample-php-codes/ajax/ajax-examples-with-php/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ajax-examples-with-php</link>
			</item>
</channel>
</rss>
