<?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>Silence is everything &#187; Silenced tutorials</title>
	<atom:link href="http://maiq.info/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://maiq.info</link>
	<description>maiq.info</description>
	<lastBuildDate>Thu, 02 Feb 2012 20:39:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Validating emails with php</title>
		<link>http://maiq.info/general/validating-emails-with-php/</link>
		<comments>http://maiq.info/general/validating-emails-with-php/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 10:00:16 +0000</pubDate>
		<dc:creator>maichi</dc:creator>
				<category><![CDATA[Silenced general]]></category>
		<category><![CDATA[Silenced tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://maiq.info/?p=277</guid>
		<description><![CDATA[Sanitizing and validating email syntax $email = $_POST&#91;'email'&#93;; //getting the posted email //sanitizing the email using FILTER_SANITIZE_EMAIL //removes all illegal e-mail characters from a string $email=filter_var&#40;$email, FILTER_SANITIZE_EMAIL&#41;; //validating the email using FILTER_VALIDATE_EMAIL //validates e-mail returning true if valid and false if invalid &#40;filter_var&#40;$field, FILTER_VALIDATE_EMAIL&#41;&#41; ? TRUE : FALSE; Creating a function to validate and sanitize <a href="http://maiq.info/general/validating-emails-with-php/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
		<wfw:commentRss>http://maiq.info/general/validating-emails-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending emails with php</title>
		<link>http://maiq.info/general/sending-emails-with-php/</link>
		<comments>http://maiq.info/general/sending-emails-with-php/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 10:00:24 +0000</pubDate>
		<dc:creator>maichi</dc:creator>
				<category><![CDATA[Silenced general]]></category>
		<category><![CDATA[Silenced tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://maiq.info/?p=249</guid>
		<description><![CDATA[Set up the variables: $to = &#34;email@address.com&#34;; //where the email will go $subject = &#34;Our Subject&#34;; //the subject $message = &#34;The message to send&#34;; //the message $from = &#34;you@email.com&#34;; //from email $header = &#34;From: $from&#34;; //header including the from email Sending the email: mail&#40;$to, $subject, $message, $header&#41;; //send the email Sending the email and returning <a href="http://maiq.info/general/sending-emails-with-php/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
		<wfw:commentRss>http://maiq.info/general/sending-emails-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ternary Conditionals</title>
		<link>http://maiq.info/general/ternary-conditionals/</link>
		<comments>http://maiq.info/general/ternary-conditionals/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 10:01:37 +0000</pubDate>
		<dc:creator>maichi</dc:creator>
				<category><![CDATA[Silenced general]]></category>
		<category><![CDATA[Silenced tutorials]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://maiq.info/?p=260</guid>
		<description><![CDATA[I know most of you allready use them, but there are still people that don`t know about them, so to make the following tutorials easyer, I`ll do a small example. First of all you must know that all you will see here is a simpler way to write not so complex if statements. Traditional way: <a href="http://maiq.info/general/ternary-conditionals/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
		<wfw:commentRss>http://maiq.info/general/ternary-conditionals/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>YouTube one click video download</title>
		<link>http://maiq.info/general/youtube-one-click-video-download/</link>
		<comments>http://maiq.info/general/youtube-one-click-video-download/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 12:05:17 +0000</pubDate>
		<dc:creator>maichi</dc:creator>
				<category><![CDATA[Silenced general]]></category>
		<category><![CDATA[Silenced tutorials]]></category>

		<guid isPermaLink="false">http://maiq.info/?p=97</guid>
		<description><![CDATA[As you know, if you add &#8220;&#38;fmt=18&#8243; at the end of a YouTube video url you can watch it in higher resolution if available. Normal YouTube url: http://www.youtube.com/watch?v=ckKFxMw6z0c High resolution YouTube url: http://www.youtube.com/watch?v=ckKFxMw6z0c&#38;fmt=18 This also means that you can download the videos in the same high quality, but as mp4 in stead of flv. To <a href="http://maiq.info/general/youtube-one-click-video-download/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
		<wfw:commentRss>http://maiq.info/general/youtube-one-click-video-download/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free youtube video downloader script</title>
		<link>http://maiq.info/general/free-youtube-video-downloader-script/</link>
		<comments>http://maiq.info/general/free-youtube-video-downloader-script/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 10:23:23 +0000</pubDate>
		<dc:creator>maichi</dc:creator>
				<category><![CDATA[Silence featured]]></category>
		<category><![CDATA[Silenced general]]></category>
		<category><![CDATA[Silenced scripts]]></category>
		<category><![CDATA[Silenced tutorials]]></category>
		<category><![CDATA[Silenced work]]></category>

		<guid isPermaLink="false">http://maiq.info/?p=83</guid>
		<description><![CDATA[Here`s a free php youtube video downloader script. It can be integrated in wordpress or any other site that uses php. You can use it as by linking to yoursite/youtube.php or by including it with a iframe. To include it with a iframe you have to upload youtube.php to your blog and then go to <a href="http://maiq.info/general/free-youtube-video-downloader-script/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
		<wfw:commentRss>http://maiq.info/general/free-youtube-video-downloader-script/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

