<?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>Счастливый веб =) &#187; php</title>
	<atom:link href="http://web-happy.ru/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://web-happy.ru</link>
	<description>Ай лав SEO, PHP, MySql, JavaScript, CSS, HTML, jQuery, Python</description>
	<lastBuildDate>Mon, 14 Jun 2010 09:49:56 +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>функция для оправки почты</title>
		<link>http://web-happy.ru/2009/11/06/funkciya-dlya-opravki-pochty/</link>
		<comments>http://web-happy.ru/2009/11/06/funkciya-dlya-opravki-pochty/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 12:38:41 +0000</pubDate>
		<dc:creator>web-happy</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://web-happy.ru/?p=120</guid>
		<description><![CDATA[Небольшай, простая функция для отправки почты

function htMail( $from, $to, $subj, $text)
{
//==============
/* To send HTML mail, you can set the Content-type header. */
$headers  = &#34;MIME-Version: 1.0\r\n&#34;;
$headers .= &#34;Content-type: text/html; charset=windows-1251\r\n&#34;;

$headers .= &#34;From: $from\r\n&#34;;
/==============

if (!mail(&#34;$to&#34;, &#34;$subj&#34;, $text, $headers))
  return 0;
  else
  return 1;
 }
]]></description>
			<content:encoded><![CDATA[<p>Небольшай, простая функция для отправки почты</p>
<pre class="brush: php">
function htMail( $from, $to, $subj, $text)
{
//==============
/* To send HTML mail, you can set the Content-type header. */
$headers  = &quot;MIME-Version: 1.0\r\n&quot;;
$headers .= &quot;Content-type: text/html; charset=windows-1251\r\n&quot;;

$headers .= &quot;From: $from\r\n&quot;;
/==============

if (!mail(&quot;$to&quot;, &quot;$subj&quot;, $text, $headers))
  return 0;
  else
  return 1;
 }
</pre>]]></content:encoded>
			<wfw:commentRss>http://web-happy.ru/2009/11/06/funkciya-dlya-opravki-pochty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>регулярное выражение для проверки email</title>
		<link>http://web-happy.ru/2009/11/03/regulyarnoe-vyrazhenie-dlya-proverki-email/</link>
		<comments>http://web-happy.ru/2009/11/03/regulyarnoe-vyrazhenie-dlya-proverki-email/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:20:20 +0000</pubDate>
		<dc:creator>web-happy</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[reg]]></category>

		<guid isPermaLink="false">http://web-happy.ru/?p=111</guid>
		<description><![CDATA["/^[\.0-9a-z_\-]+@[0-9a-z_\.\-]+\.[a-z]{2,4}$/i"
Довольна часто встречается такая задача и что  бы каждый раз заново не изобретать &#171;велосипед&#187;, запишу ее здесь.]]></description>
			<content:encoded><![CDATA[<p><code>"/^[\.0-9a-z_\-]+@[0-9a-z_\.\-]+\.[a-z]{2,4}$/i"</code></p>
<p>Довольна часто встречается такая задача и что  бы каждый раз заново не изобретать &laquo;велосипед&raquo;, запишу ее здесь.</p>]]></content:encoded>
			<wfw:commentRss>http://web-happy.ru/2009/11/03/regulyarnoe-vyrazhenie-dlya-proverki-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>date in mysql</title>
		<link>http://web-happy.ru/2009/10/19/date-in-mysql/</link>
		<comments>http://web-happy.ru/2009/10/19/date-in-mysql/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 06:41:33 +0000</pubDate>
		<dc:creator>web-happy</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://web-happy.ru/?p=74</guid>
		<description><![CDATA[Простой шаблон функции по возвращению даты в mysql формате

&#60;?
date(&#039;Y-m-d-H-i-s&#039;);
?&#62;
]]></description>
			<content:encoded><![CDATA[<p>Простой шаблон функции по возвращению даты в mysql формате</p>
<pre class="brush: php">
&lt;?
date(&#039;Y-m-d-H-i-s&#039;);
?&gt;
</pre>]]></content:encoded>
			<wfw:commentRss>http://web-happy.ru/2009/10/19/date-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
