<?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>The Filipino Programmer</title>
	<atom:link href="http://www.cybervaldez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cybervaldez.com</link>
	<description></description>
	<lastBuildDate>Wed, 26 Oct 2011 08:05:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>The Philippines is becoming a hub of global communication and technology, including increased use of YouTube Philippines</title>
		<link>http://www.cybervaldez.com/the-philippines-is-becoming-a-hub-of-global-communication-and-technology-including-increased-use-of-youtube-philippines/2011/</link>
		<comments>http://www.cybervaldez.com/the-philippines-is-becoming-a-hub-of-global-communication-and-technology-including-increased-use-of-youtube-philippines/2011/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 06:36:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1331</guid>
		<description><![CDATA[The Philippines is becoming a hub of global communication and technology, including increased use of YouTube Philippines Countless numbers of people all over the world use the internet on a daily basis. The numbers are especially impressive in the Philippines, with up to 30 million Filipinos accessing the web regularly, to shop, study, search for [...]]]></description>
			<content:encoded><![CDATA[<p>The Philippines is becoming a hub of global communication and technology, including increased use of YouTube Philippines</p>

<p>Countless numbers of people all over the world use the internet on a daily basis. The numbers are especially impressive in the Philippines, with up to 30 million Filipinos accessing the web regularly, to shop, study, search for opportunities and ideas or even to create new businesses and connect with each other. Interestingly, the online population here is growing more rapidly than it is in the rest of Southeast Asia, and even the West. The statistics show that North America is growing at three percent and Europe is growing at eight percent, while the Philippines is growing at a massive 16 percent.</p>

<p>A prime example of the how the Philippines is growing on the internet is through the use of YouTube. In many countries, it is common for people to surf this site to watch funny, interesting or informative videos, before playing <a href="http://www.partypoker.it/" title="Party Poker">Partypoker</a> or checking their e-mails. YouTube is growing regularly, with over three billion video views every day, up from two billion last year. Especially in Asia, there is a real feeling of growth and YouTube is becoming the ultimate democratic form of media. Anyone can record a video and put it up on YouTube, and with increasing numbers of people owning video cameras or mobile phones, capturing videos is becoming easier all the time.</p>

<p>YouTube officially launched in the Philippines last October 13th, with a localised version of the website called YouTube Philippines. These localised forms of the site mean that local content can be viewed and added to, so that it is always relevant to a specific place and the people of that area will be interested in it. Providing geographically relevant content lures in users who live in one place and connects them to an online community.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/the-philippines-is-becoming-a-hub-of-global-communication-and-technology-including-increased-use-of-youtube-philippines/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Tip] How to pass an array as an argument to a function.</title>
		<link>http://www.cybervaldez.com/tip-how-to-pass-an-array-as-an-argument-to-a-function/2011/</link>
		<comments>http://www.cybervaldez.com/tip-how-to-pass-an-array-as-an-argument-to-a-function/2011/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 10:13:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Might-be-useful]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1319</guid>
		<description><![CDATA[Problem: Help! Iis it possible to pass the values of an array as an argument in my function? Anwer: Conveniently, Yes! You can indeed use set an array as the argument of a function. var mapArgs = [0,20,50,10]; draw.apply(this, mapArgs); function draw(x1,x2,y1,y2) { // do something&#8230; alert(x1 + &#8216; &#8216; + x2 + &#8216; &#8216; [...]]]></description>
			<content:encoded><![CDATA[<h1>Problem: Help! Iis it possible to pass the values of an array as an argument in my function?</h1>

<p><strong>Anwer</strong>: Conveniently, Yes! You can indeed use set an array as the argument of a function.</p>

<blockquote>
  <p>var mapArgs = [0,20,50,10];<br />
  draw.apply(this, mapArgs);</p>
  
  <p>function draw(x1,x2,y1,y2)<br />
  {
    // do something&#8230;<br />
    alert(x1 + &#8216; &#8216; + x2 + &#8216; &#8216; + +y1 + &#8216; &#8216;+ y2);<br />
  }</p>
</blockquote>

<p>Of course you can use it in a more creative way</p>

<blockquote>
  <p>var run = { ready : ["Is this awesome?"], getset : ["or…"], go: ["What?!"] }<br />
  var func = {<br />
    ready: function(str)<br />
    {<br />
        alert(str);<br />
    },<br />
    getset: function(str)<br />
    {<br />
        alert(str.toUpperCase());<br />
    },<br />
    go: function(str)<br />
    {<br />
        alert(str + &#8216;!!!&#8217;);<br />
    }<br />
  }</p>
  
  <p>for (x in run)<br />
    func[x].apply(this, run[x]);</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/tip-how-to-pass-an-array-as-an-argument-to-a-function/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Super Tip!] How to loop or iterate over an object&#8217;s key/value pair.</title>
		<link>http://www.cybervaldez.com/super-tip-how-to-loop-or-iterate-over-an-objects-keyvalue-pair/2011/</link>
		<comments>http://www.cybervaldez.com/super-tip-how-to-loop-or-iterate-over-an-objects-keyvalue-pair/2011/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 13:57:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1313</guid>
		<description><![CDATA[Problem: Help! Is it possible to loop or iterate through each object&#8217;s key/value pair like an array? Answer: A very useful trick for iterating over objects is the use of (for x in object), with this you can completely use objects as array! myObject = { &#8220;this&#8221; : &#8220;value1&#8243;, &#8220;is&#8221; : &#8220;value2&#8243;, &#8220;awesome&#8221; : &#8220;value3&#8243; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong>: Help! Is it possible to loop or iterate through each object&#8217;s key/value pair like an array? 
<strong>Answer</strong>: A very useful trick for iterating over objects is the use of (<em><strong>for x in object</strong></em>), with this you can completely use objects as array!</p>

<blockquote><p>myObject = { <br />
    &#8220;this&#8221; : &#8220;value1&#8243;, <br />
    &#8220;is&#8221; : &#8220;value2&#8243;, <br />
    &#8220;awesome&#8221; : &#8220;value3&#8243; <br />
} <br />
</p>
<p>
for (x in myObject)<br />
    alert(&#8216;key : &#8216; + x + &#8216; / value : &#8216; + myObject[x]); <br />
</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/super-tip-how-to-loop-or-iterate-over-an-objects-keyvalue-pair/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Solution] How to use this in setInterval and setTimeout problems inside objects</title>
		<link>http://www.cybervaldez.com/solution-how-to-use-this-in-setinterval-and-settimeout-problems-inside-objects/2011/</link>
		<comments>http://www.cybervaldez.com/solution-how-to-use-this-in-setinterval-and-settimeout-problems-inside-objects/2011/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 16:48:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bug Fixes]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1299</guid>
		<description><![CDATA[Problem: One of the problems we find when using setInterval and setTimeout functions in javascript is how the special variable this is switched to the window object on the instance the function executes inside the interval. Answer: Store the current object in a variable (for this example, the variable is called self) and use that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong>: One of the problems we find when using setInterval and setTimeout functions in javascript is how the special variable <strong><em>this</em></strong> is switched to the window object on the instance the function executes inside the interval.</p>

<p><strong>Answer</strong>:  Store the current object in a variable (for this example, the variable is called <strong><em>self</em></strong>) and use that variable for your interval&#8217;s function instead of <em><strong>this</strong></em>.</p>

<blockquote>
<p>function foo() <br/>
{<br/>
  this.init = function () {<br/>
      var self = this;<br/>
      this.interval = setInterval(function(){ self.update(); }, 1000); // this can be setTimeout <br/>
  };</p>

<p>
  this.update = function () {<br/>
      this.counter++;<br/>
      console.log(this.counter);<br/>
  };<br/>
}
</p>

<p>Json Example</p>
<textarea cols=70 rows=12>
var foo = {
  init : function() {
      var self = this;
      this.interval = setInterval(function(){ self.update(); }, 1000); // this can be setTimeout
  },
  update : function () {
      this.counter++;
      console.log(this.counter);
  };
} 
</textarea>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/solution-how-to-use-this-in-setinterval-and-settimeout-problems-inside-objects/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to login as root or how to fix the permission problems when running su commands in WHM</title>
		<link>http://www.cybervaldez.com/how-to-login-as-root-or-how-to-fix-the-permission-problems-when-running-su-commands-in-whm/2011/</link>
		<comments>http://www.cybervaldez.com/how-to-login-as-root-or-how-to-fix-the-permission-problems-when-running-su-commands-in-whm/2011/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 14:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[WHM]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1292</guid>
		<description><![CDATA[You can&#8217;t use the root user when SSH&#8217;ing to WHM but what you can do is issue a SU command once you&#8217;ve logged in with another user which isn&#8217;t root. On some occassions, you may encounter a no permission error when doing this. Problem: Help! I can&#8217;t seem to login as root in whm so [...]]]></description>
			<content:encoded><![CDATA[<p>You can&#8217;t use the root user when SSH&#8217;ing to WHM but what you can do is issue a <strong>SU</strong> command once you&#8217;ve logged in with another user which isn&#8217;t root. On some occassions, you may encounter a no permission error when doing this.</p>

<p><strong>Problem</strong>: Help! I can&#8217;t seem to login as root in whm so I need to do a <strong>SU</strong> command instead but i&#8217;m getting a permission error!</p>

<p><strong>Answer</strong>: In your whm panel, access <strong>Security Center -> Manage Wheel Group Users</strong> and you will be able to assign the username to the group that allows <strong>SU</strong></p>

<p>And that&#8217;s the solution to your problem!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-login-as-root-or-how-to-fix-the-permission-problems-when-running-su-commands-in-whm/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find, look or search for a specific file in linux</title>
		<link>http://www.cybervaldez.com/how-to-find-look-or-search-for-a-specific-file-in-linux/2011/</link>
		<comments>http://www.cybervaldez.com/how-to-find-look-or-search-for-a-specific-file-in-linux/2011/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 14:18:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1289</guid>
		<description><![CDATA[A common problem for those aren&#8217;t aware of using linux are locating certain files(this is when troubleshooting, or simply doing steps from a guide) Problem: I&#8217;m looking for a file in linux! How do I find this? Answer: You can easily find a file by using the find command: find / -name &#8220;httpd.conf&#8221; -print Note: [...]]]></description>
			<content:encoded><![CDATA[<p>A common problem for those aren&#8217;t aware of using linux are locating certain files(this is when troubleshooting, or simply doing steps from a guide)</p>

<p><strong>Problem</strong>: I&#8217;m looking for a file in linux! How do I find this?</p>

<p><strong>Answer</strong>: You can easily find a file by using the <strong>find</strong> command:</p>

<blockquote>
  <p>find / -name &#8220;httpd.conf&#8221; -print</p>
</blockquote>

<p><strong>Note: the -print option will print out the location of the name, / represents what location to start.</strong></p>

<p>If you are interested in knowing more about the find command, look no further than the following link:

http://www.ling.ohio-state.edu/~kyoon/tts/unix-help/unix-find-command-examples.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/how-to-find-look-or-search-for-a-specific-file-in-linux/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution for Headers Already Sent problem in php scripts and frameworks</title>
		<link>http://www.cybervaldez.com/solution-for-headers-already-sent-problem-in-php-scripts-and-frameworks/2011/</link>
		<comments>http://www.cybervaldez.com/solution-for-headers-already-sent-problem-in-php-scripts-and-frameworks/2011/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 05:01:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bug Fixes]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1282</guid>
		<description><![CDATA[Headers already sent issue? Here&#8217;s how to fix one of the most common problems in frameworks and websites: Problem: Help! i&#8217;m getting the errors and/or warnings &#8211; &#8220;Headers already sent!&#8220; Answer #1: Check the php files which are usually found in your headers(the ones which are loaded first, typically config.php) and look for extra spaces [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>Headers already sent</strong> issue?</h2>

<p>Here&#8217;s how to fix one of the most common problems in frameworks and websites:</p>

<p><strong>Problem</strong>: Help! i&#8217;m getting the errors and/or warnings &#8211; &#8220;<strong>Headers already sent!</strong>&#8220;</p>

<p><strong>Answer #1</strong>: Check the php files which are usually found in your headers(the ones which are loaded first, typically config.php) and look for extra spaces before your <strong><code>&lt;?php</code></strong> start tag and spaces after <strong><code>?&gt;</code></strong> end tag. Delete them and voila! Problem Solved!</p>

<p><strong>Answer #2</strong>: Check your header scripts(The first few lines of code) and make sure you&#8217;re not outputting anything(e.g: an echo, sprintf or a warning message) before using header.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/solution-for-headers-already-sent-problem-in-php-scripts-and-frameworks/2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL Super-tip! How to comma-delimit or comma-separate your query results!</title>
		<link>http://www.cybervaldez.com/mysql-super-tip-how-to-comma-delimit-or-comma-separate-your-query-results/2010/</link>
		<comments>http://www.cybervaldez.com/mysql-super-tip-how-to-comma-delimit-or-comma-separate-your-query-results/2010/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 20:49:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[comma]]></category>
		<category><![CDATA[comma delimit]]></category>
		<category><![CDATA[comma separate]]></category>
		<category><![CDATA[concat]]></category>
		<category><![CDATA[delimit]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[group concatenation]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[separate]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1244</guid>
		<description><![CDATA[_Problem_: Help! I&#8217;d like to make it so my query results to be a comma delimited format! _Answer_: No problemo! Simply use mySQL&#8217;s group_concat function and you&#8217;ll get your results in comma delimited values! SELECT GROUP_CONCAT(id) FROM users WHERE authenticated=1 ORDER BY NULL LIMIT 1 Note: (Optional) ORDER BY NULL is used to prevent unnecessary [...]]]></description>
			<content:encoded><![CDATA[<p><strong>_Problem_</strong>: Help! I&#8217;d like to make it so my query results to be a comma delimited format!</p>

<p><strong>_Answer_</strong>: No problemo! Simply use mySQL&#8217;s group_concat function and you&#8217;ll get your results in comma delimited values!</p>

<blockquote>SELECT GROUP_CONCAT(id) FROM users WHERE authenticated=1 ORDER BY NULL LIMIT 1

Note: (Optional) ORDER BY NULL is used to prevent unnecessary sorting with filesort</blockquote>

<p>This query would result to:
1,3,4,6,11</p>

<p><strong>That&#8217;s It!</strong>  This is pretty useful when you are going to use the <a href="http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/">SELECT&#8230; IN</a> statement for your subqueries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/mysql-super-tip-how-to-comma-delimit-or-comma-separate-your-query-results/2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL Super-tip! Use LIMIT and OFFSET to paginate your SELECT statements!</title>
		<link>http://www.cybervaldez.com/mysql-super-tip-use-limit-and-offset-to-paginate-your-select-statements/2010/</link>
		<comments>http://www.cybervaldez.com/mysql-super-tip-use-limit-and-offset-to-paginate-your-select-statements/2010/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 20:51:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Super Tip!]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1236</guid>
		<description><![CDATA[Awesome, it seems that mySQL now supports the OFFSET clause. This is very useful for paginating your SQL statements. The following will return the first 10 entries of your select statement: &#8220;SELECT field FROM table LIMIT 10&#8243; This, on the otherhand, will OFFSET your result by 10, selecting your entries #10-20: &#8220;SELECT field FROM table [...]]]></description>
			<content:encoded><![CDATA[<p>Awesome, it seems that mySQL now supports the OFFSET clause.</p>

<p>This is very useful for paginating your SQL statements.</p>

<p>The following will return the first 10 entries of your select statement:</p>

<blockquote>&#8220;SELECT field FROM table LIMIT 10&#8243;</blockquote>

<p>This, on the otherhand, will OFFSET your result by 10, selecting your entries #10-20:</p>

<blockquote>&#8220;SELECT field FROM table LIMIT 10 OFFSET 10&#8243;</blockquote>

<p>Here&#8217;s an example of how to capture entries #10-30:</p>

<blockquote>&#8220;SELECT field FROM table LIMIT 20 OFFSET 10&#8243;</blockquote>

<p>Things just keeps on getting easier and easier!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/mysql-super-tip-use-limit-and-offset-to-paginate-your-select-statements/2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mySQL: Simplify your multiple WHERE queries with WHERE in</title>
		<link>http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/</link>
		<comments>http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 10:54:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-tos]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Super Tip!]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.cybervaldez.com/?p=1228</guid>
		<description><![CDATA[_Problem #1_: How do I simplify my mySql where queries? _Problem #2_: How can I search through an array in my where statement? Answer: An awesome trick when it comes to querying multiple where clauses is to use the WHERE &#60;&#8230;&#62; IN command. $id = &#8217;1,4,3,6,8,2&#8242;; &#8220;SELECT * FROM &#60;&#8230;&#62; WHERE id IN ($id)&#8221; Oh [...]]]></description>
			<content:encoded><![CDATA[<p><strong>_Problem #1_</strong>: How do I simplify my mySql where queries?
<strong>_Problem #2_</strong>: How can I search through an array in my where statement?</p>

<p><strong>Answer</strong>: An awesome trick when it comes to querying multiple where clauses is to use the WHERE &lt;&#8230;&gt; IN command.</p>

<blockquote>$id = &#8217;1,4,3,6,8,2&#8242;;
&#8220;SELECT * FROM &lt;&#8230;&gt; <strong>WHERE</strong> id <strong>IN</strong> ($id)&#8221;
</blockquote>

<p>Oh and did I mention you can prepend the <strong>NOT</strong> statement to show results which is NOT included in the list?</p>

<blockquote>$id = &#8217;5,7&#8242;;
&#8220;SELECT * FROM &lt;&#8230;&gt; <strong>WHERE</strong> id <strong>NOT IN</strong> ($id)&#8221;
</blockquote>

<p><strong>Oh-Some!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cybervaldez.com/mysql-simplify-your-multiple-where-queries-with-where-in/2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

