<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>discuss php-ajax-jquery</title>
	<atom:link href="http://phpajaxdev.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://phpajaxdev.wordpress.com</link>
	<description>application development with open source</description>
	<lastBuildDate>Sat, 06 Feb 2010 11:05:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='phpajaxdev.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>discuss php-ajax-jquery</title>
		<link>http://phpajaxdev.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://phpajaxdev.wordpress.com/osd.xml" title="discuss php-ajax-jquery" />
	<atom:link rel='hub' href='http://phpajaxdev.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Send email from localhost using mail();</title>
		<link>http://phpajaxdev.wordpress.com/2010/02/06/send-email-from-localhost-using-mail/</link>
		<comments>http://phpajaxdev.wordpress.com/2010/02/06/send-email-from-localhost-using-mail/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:05:51 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[php email]]></category>
		<category><![CDATA[sendmail]]></category>

		<guid isPermaLink="false">http://phpajaxdev.wordpress.com/?p=7</guid>
		<description><![CDATA[Have you ever been frustrating, why e-mail is not going from the localhost while using XAMPP or WAMP or any other PHP servers in windows environment? well in that situation i think i can help you.In this article i am going to tell you how to send e-mail from localhost in PHP. 1) Open the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phpajaxdev.wordpress.com&amp;blog=11877783&amp;post=7&amp;subd=phpajaxdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have you ever been frustrating, why e-mail is not going from the localhost while using XAMPP or WAMP or any other PHP servers in windows environment? well in that situation i think i can help you.In this article i am going to tell you how to send e-mail from localhost in PHP.</p>
<p>1) Open the “php.ini“. You should know where it is located because it depends upon the particular server you’re running.</p>
<p>2) Search for the attribute called “SMTP” in the php.ini file.Generally you can find the line “SMTP=localhost“. change the localhost to the smtp server name of your ISP. And, there is another attribute called “smtp_port” which should be set to 25.I’ve set the following values in my php.ini file.</p>
<p>SMTP = smtp.wlink.com.np<br />
smtp_port = 25</p>
<p>3) Restart the apache server so that PHP modules and attributes will be reloaded.</p>
<p>4) Now try to send the mail using the mail() function ,</p>
<p>mail(“you@yourdomain.com”,”test subject”,”test body”);</p>
<p>you might get the warning like this,</p>
<p>Warning: mail() [function.mail]: “sendmail_from” not set in php.ini or custom “From:” header missing in C:\Program Files\xampp\htdocs\testmail.php on line 1</p>
<p>5) Now specify the following headers and try to send the mail again,</p>
<p>$headers = ‘MIME-Version: 1.0′ . “\r\n”;<br />
$headers .= ‘Content-type: text/html; charset=iso-8859-1′ . “\r\n”;<br />
$headers .= ‘From: sender@sender.com’ . “\r\n”;<br />
mail(“you@yourdomain.com”,”test subject”,”test body”,$headers);</p>
<p>Well that’s all, the mail is sent to “you@yourdomain.com” from the localhost.</p>
<p>Note : Some smtp server like gmail verifies the email address of the sender so the email address which is in the place of “sender@sender.com” should be a valid and existing email address otherwise mail might not be sent to the “you@yourdomain.com”.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/phpajaxdev.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/phpajaxdev.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/phpajaxdev.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/phpajaxdev.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/phpajaxdev.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/phpajaxdev.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/phpajaxdev.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/phpajaxdev.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/phpajaxdev.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/phpajaxdev.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/phpajaxdev.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/phpajaxdev.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/phpajaxdev.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/phpajaxdev.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phpajaxdev.wordpress.com&amp;blog=11877783&amp;post=7&amp;subd=phpajaxdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phpajaxdev.wordpress.com/2010/02/06/send-email-from-localhost-using-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6327ab39a54b2d902a5d7fd78a8d3dcf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nick</media:title>
		</media:content>
	</item>
		<item>
		<title>Ajax &#8211; an introduction</title>
		<link>http://phpajaxdev.wordpress.com/2010/02/06/ajax-an-introduction/</link>
		<comments>http://phpajaxdev.wordpress.com/2010/02/06/ajax-an-introduction/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 06:42:39 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://phpajaxdev.wordpress.com/?p=3</guid>
		<description><![CDATA[Basics of AJAX: AJAX is defined or termed as Asynchronous Javascript and XML. It’s a new avtar of modern day website creation. AJAX is one of the programming techniques which has primarily made popular after 2005 by Google. No doubt about it that AJAX has set innovative and new standads of programming. AJAX has enabled [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phpajaxdev.wordpress.com&amp;blog=11877783&amp;post=3&amp;subd=phpajaxdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Basics of AJAX:</strong></p>
<p>AJAX is defined or termed as Asynchronous Javascript and XML. It’s a new avtar of modern day website creation. AJAX is one of the programming techniques which has primarily made popular after 2005 by Google. No doubt about it that AJAX has set innovative and new standads of programming. AJAX has enabled webmasters create better, faster and more user-friendly web applications with its base of Javascript and HTTP.</p>
<p>AJAX is based on 4 web standards which are well defined and supported by all major browsers.</p>
<p>1. JavaScript<br />
2. XML<br />
3. HTML<br />
4. CSS</p>
<p><strong>Basic Advantage of AJAX<br />
</strong></p>
<p>Faster Updation: If you want to update the data base of your web AJAX provides an unique feature to reduce consumption of time. Unlike other web languages where you need to update the entire data base every time you need to update the contents, however with AJAX you need to spend time only on updation of the contents which actually requires to be done so. AJAX selects the contents from the web which needs updation giving eage to the process.</p>
<p>Faster Response: AJAX enables faster responses to the inputs even if the changes are not done on server. The unique advantage of AJAX is its ability to reload the individual pages separately giving a user friendly benefit and users may perceive the site functioning faster.</p>
<p>Faster Connection: With AJAX it’s not required to connect the webpage with server every time. Some times it saves the interaction between them to increase functionality and speed. It allows webpage to request for smaller bits of information rather than asking for the entire page to load again and again which increases speed as well. AJAX is a technology related to browser which is independent of web server.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/phpajaxdev.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/phpajaxdev.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/phpajaxdev.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/phpajaxdev.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/phpajaxdev.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/phpajaxdev.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/phpajaxdev.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/phpajaxdev.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/phpajaxdev.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/phpajaxdev.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/phpajaxdev.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/phpajaxdev.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/phpajaxdev.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/phpajaxdev.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phpajaxdev.wordpress.com&amp;blog=11877783&amp;post=3&amp;subd=phpajaxdev&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phpajaxdev.wordpress.com/2010/02/06/ajax-an-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6327ab39a54b2d902a5d7fd78a8d3dcf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nick</media:title>
		</media:content>
	</item>
	</channel>
</rss>
