<?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>Learn PHP &#124; Learn CSS &#124; Learn Javascript &#124; Gmail contact importer &#124;  Yahoo contact importer &#124;  Hotmail contact importer &#187; PHP beginner</title>
	<atom:link href="http://php.vidhyapith.com/index.php/category/phpbeginner/feed/" rel="self" type="application/rss+xml" />
	<link>http://php.vidhyapith.com</link>
	<description>PHP</description>
	<lastBuildDate>Fri, 12 Feb 2010 11:47:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>create database with mysql or phpmyadmin</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/create-database-with-mysql-or-phpmyadmin/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/create-database-with-mysql-or-phpmyadmin/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 19:48:05 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[PHP beginner]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[mysql database]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=159</guid>
		<description><![CDATA[step -1 start wamp or your installed server step-2 click on wamp symbol at right bottom of your pc step-3 click on phpmyadmin step-4 type database name ie. testphpmyadmin step-6 type table and number of field for table and click on create]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/create-database-with-mysql-or-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>login with php script</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/login-with-php-script/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/login-with-php-script/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 19:15:40 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[PHP beginner]]></category>
		<category><![CDATA[login with php]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=123</guid>
		<description><![CDATA[Login with php Step:1 create table with mysql database CREATE TABLE /*!32312 IF NOT EXISTS*/ `admin ` ( `admin_id` int(11) NOT NULL auto_increment, `admin_username` varchar(50) default NULL, `admin_password` varchar(50) default NULL, `company_name` varchar(100) default NULL, `address` text, `currency` varchar(50) default NULL, `emailid` varchar(100) default NULL, PRIMARY KEY (`admin_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; Step- 2 [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/login-with-php-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>add/update/delete/read with php and mysql</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/addupdatedeleteread-with-php-and-mysql/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/addupdatedeleteread-with-php-and-mysql/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 07:02:49 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[PHP beginner]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=92</guid>
		<description><![CDATA[step -1 create  database  with mysql copy paste connection code from -http://php.vidhyapith.com/index.php/2009/08/php-with-mysql-connection/ to your top of php page. step- 3 create table from phpmyadmin for example CREATE TABLE /*!32312 IF NOT EXISTS*/ `customer` ( `cust_id` int(11) NOT NULL auto_increment, `full_name` varchar(200) default NULL, `email` varchar(200) default NULL, `living_address` text, `delivery_address` text, `country` varchar(200) default NULL, [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/addupdatedeleteread-with-php-and-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>php with mysql connection</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/php-with-mysql-connection/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/php-with-mysql-connection/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 06:50:36 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[PHP beginner]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=90</guid>
		<description><![CDATA[&#60;?php define(&#8220;NAME&#8221;,&#8221;mydatabasename&#8221;); //your database name define(&#8220;USER&#8221;,&#8217;root&#8217;); //your database user name define(&#8220;PASSWORD&#8221;,&#8221;);//your database password define(&#8220;HOST&#8221;,&#8221;localhost&#8221;);//your database host name //connection to sql server $link = mysql_connect(HOST,USER,PASSWORD); if (!$link) { die(&#8216;Could not connect: &#8216; . mysql_error()); } //connect to database $db_selected = mysql_select_db(NAME,$link); if (!$db_selected) { die (&#8216;Can\&#8217;t use foo : &#8216; . mysql_error()); } ?&#62;]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/php-with-mysql-connection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>install wamp Step -1 (only for window users)</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/step-1-only-for-window-users/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/step-1-only-for-window-users/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 09:04:17 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[PHP beginner]]></category>
		<category><![CDATA[download  wamp]]></category>
		<category><![CDATA[download dreamviewer]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=59</guid>
		<description><![CDATA[Learn PHP Step -1 (only for window users) 1.  Install necessary software for run php, you need following software to install in your pc. 2.  Download From Here –Click here for php and mysql. -extract the folder ,you need winrar software for extraction, if do not have it download it from here -http://www.rarlab.com/download.htm -install winrar [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/step-1-only-for-window-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
