<?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; general</title>
	<atom:link href="http://php.vidhyapith.com/index.php/category/php/general/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>make dynamic page with php</title>
		<link>http://php.vidhyapith.com/index.php/2010/02/make-dynamic-page-with-php/</link>
		<comments>http://php.vidhyapith.com/index.php/2010/02/make-dynamic-page-with-php/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 11:47:17 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=206</guid>
		<description><![CDATA[$lang_arr=array(); $lang_arr["Recherche"]=&#8217;Search&#8217;; $lang_arr["ACCUEIL"]=&#8217;Home&#8217;; $str=&#8221;&#60;?php \n&#8221;; foreach ($lang_arr as $key=&#62;$value) { echo &#8220;key:&#8221;.$key.&#8221;&#60;br&#62;&#8221;; echo &#8220;val:&#8221;.$value.&#8221;&#60;br&#62;&#8221;; $str.=&#8221;$&#8221;.&#8221;lang_arr['$key']=&#8217;$value&#8217;;\n&#8221;; } $str.=&#8221; ?&#62;&#8221;; $openedfile = fopen(&#8216;test.php&#8217;, &#8220;w&#8221;); fwrite($openedfile, $str); fclose($openedfile);]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2010/02/make-dynamic-page-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail Addressbook Importer</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/gmail-addressbook-importer/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/gmail-addressbook-importer/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 07:08:01 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[curl login gmail]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=95</guid>
		<description><![CDATA[Gmail Address Importer &#60;?php $ loginusername = urlencode(“test@gmail.com”); $loginpassword = urlencode(“1234567”); //First  read gmail login pages $ch = curl_init(); //curl url curl_setopt($ch, CURLOPT_URL,&#8221;http://gmail.com&#8221;); curl_setopt($ch, CURLOPT_REFERER, &#8220;&#8221;); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); $agent = &#8220;Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)&#8221;; $cookie_file_path = &#8220;C:/Inetpub/wwwroot/spiders/cookie/cook&#8221;; // Please set your [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/gmail-addressbook-importer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMTP mail with php</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/smtp-mail-with-php-2/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/smtp-mail-with-php-2/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 07:34:57 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=84</guid>
		<description><![CDATA[Step -1 first create testmail.php, copy paste below code  in it. &#60;?php $smtpuser=&#8221;info@yourdomain.com&#8221;; $smtphost=&#8221;mail.yourdomain.com&#8221;; $smtppass=&#8221;123456&#8243;; require_once &#8220;Mail.php&#8221;; $mail=&#8221;test@yahoo.com&#8221;; //to email id $subject=&#8221;test mail&#8221;;  //subject of email $msg=&#8221;test mail&#8221;;//body of email $headers = array (&#8216;From&#8217; =&#62; $smtpuser, &#8216;To&#8217; =&#62; $mail, &#8216;MIME-Version&#8217; =&#62; &#8217;1.0&#8242;, &#8216;Content-type&#8217; =&#62; &#8216;text/html&#8217;, &#8216;Subject&#8217; =&#62; $subject); $smtp = Mail::factory(&#8216;smtp&#8217;, array (&#8216;host&#8217; =&#62; $smtphost, [...]]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/smtp-mail-with-php-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMTP mail with php wordpress</title>
		<link>http://php.vidhyapith.com/index.php/2009/08/smtp-mail-with-php/</link>
		<comments>http://php.vidhyapith.com/index.php/2009/08/smtp-mail-with-php/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 07:20:44 +0000</pubDate>
		<dc:creator>Elfin Ruler</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://php.vidhyapith.com/?p=80</guid>
		<description><![CDATA[for smtp mail please visit below site http://www.callum-macdonald.com/code/wp-mail-smtp/]]></description>
		<wfw:commentRss>http://php.vidhyapith.com/index.php/2009/08/smtp-mail-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
