<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Daniel Dumas :: PHP Programmer Philippines</title>
	
	<link>http://danieldumas.com</link>
	<description />
	<lastBuildDate>Sat, 19 Sep 2009 15:20:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/MrNightMan" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">MrNightMan</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>at last my Wordpress blog is now updated!</title>
		<link>http://danieldumas.com/wordpress-blog-update</link>
		<comments>http://danieldumas.com/wordpress-blog-update#comments</comments>
		<pubDate>Sat, 19 Sep 2009 15:20:21 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=706</guid>
		<description><![CDATA[yepeee! at last after months of being busy i have now updated my blog to the latest wordpress version (from 2.6.1 to 2.8.4) and yepeee again hehe   my theme works. i thought my theme is not gonna work with the new version so im afraid to update and also i got busy these [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/wordpress-blog-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome me back my blog!</title>
		<link>http://danieldumas.com/welcome-me-back-my-blog</link>
		<comments>http://danieldumas.com/welcome-me-back-my-blog#comments</comments>
		<pubDate>Mon, 15 Jun 2009 21:51:44 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=703</guid>
		<description><![CDATA[weee after 2 months of no post i&#8217;m alive again hehe. .i have been very busy this past months, im still busy but i will try to post again to make this blog alive again hehe. .i will update this first to new version of wordpress so im updated.. i got busy last months doing [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/welcome-me-back-my-blog/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>PHP Operators: The === Operator</title>
		<link>http://danieldumas.com/php-operators-the-triple-equals-operator</link>
		<comments>http://danieldumas.com/php-operators-the-triple-equals-operator#comments</comments>
		<pubDate>Wed, 04 Mar 2009 18:17:12 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=700</guid>
		<description><![CDATA[PHP&#8217;s === Operator enables you to compare or test variables for both equality and type. Refer below for example.

&#60;?php
//define variables..
$str = '9';
$int = 9;

//Returns true since both variable contains the same value..
$res = ($str==$int);

//Returns false since the two variables are not of the same type..
$res = ($str===$int);
?&#62;




Share and Bookmark this Post..


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
		<wfw:commentRss>http://danieldumas.com/php-operators-the-triple-equals-operator/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>PHP Operators : Using Comparison Operators</title>
		<link>http://danieldumas.com/php-operators-using-comparison-operators</link>
		<comments>http://danieldumas.com/php-operators-using-comparison-operators#comments</comments>
		<pubDate>Tue, 03 Mar 2009 09:28:06 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=686</guid>
		<description><![CDATA[To compare php variables to determine whether they are the same or different.. you can use PHP Comparison Operators. See below for a list of examples..
I. Define the Variables

&#60;?php
$num1 = 9;
$num2 = 9;
$num3 = 22;
?&#62;

A. The Less Than Operator

&#60;?php
//Returns true if variable in the left side is less than the right..
$res = ($num1 &#60; $num3);
//returns [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/php-operators-using-comparison-operators/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>PHP Operators:  Using String Concatenation Operator</title>
		<link>http://danieldumas.com/php-operators-using-string-concatenation-operators</link>
		<comments>http://danieldumas.com/php-operators-using-string-concatenation-operators#comments</comments>
		<pubDate>Sun, 18 Jan 2009 15:03:36 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=682</guid>
		<description><![CDATA[You can concatenate or add strings together using the PHP string concatenation operator represented by the period sign ( . ). refer to the examples below.

&#60;?php
// intialize variables
$username = "daniel";
$domain = "danieldumas.com";

// the variable string $username and $domain can be combine using the concatenation operator
$email_address = $username . '@'. $domain;

//the variable $email_address now contains the [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/php-operators-using-string-concatenation-operators/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>PHP Operators : Using Arithmetic Operators</title>
		<link>http://danieldumas.com/php-operators-using-arithmetic-operators</link>
		<comments>http://danieldumas.com/php-operators-using-arithmetic-operators#comments</comments>
		<pubDate>Sun, 04 Jan 2009 04:37:38 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=673</guid>
		<description><![CDATA[Using Arithmetic Operators in PHP you can perform mathematical operations on PHP variables. refer to the example below.
Using PHP Arithmetic Operator
//define variables
&#60;?php

$num1 = 50;
$num2 = 30;

//Addition
$sum = $num1 + $num2;

//Subtraction
$difference = $num1 - $num2;

//Multiplication
$product = $num1*$num2;

//Division
$quotient = $num1 / $num2;

//Modulus
$remainder = $num1 % $num2;

?&#62;
you may also use the shorthand using the PHP Assignment Operator and [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/php-operators-using-arithmetic-operators/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Operators</title>
		<link>http://danieldumas.com/php-operators</link>
		<comments>http://danieldumas.com/php-operators#comments</comments>
		<pubDate>Wed, 31 Dec 2008 06:17:32 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=670</guid>
		<description><![CDATA[PHP Operators are very important, if PHP variables is the building blocks of PHP programming PHP Operators is the tool that lets you do something useful with variables. php comes with many useful operators such as Assignment Operator, Arithmetic Operator, String Operator, Comparison Operator and Logical Operator.
Below is a list of PHP Operators and its [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/php-operators/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Weeeee Happy New Year! Welcome me back again!…</title>
		<link>http://danieldumas.com/weeeee-happy-new-year-welcome-me-back-again</link>
		<comments>http://danieldumas.com/weeeee-happy-new-year-welcome-me-back-again#comments</comments>
		<pubDate>Wed, 31 Dec 2008 05:21:48 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[kwento lang]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=667</guid>
		<description><![CDATA[Wahhhhhhhh happy new year everybody its been a month since my last post im super duper busy kasi sa mga projects wahhhhhhh by the way happy new year sa lahat welcome me back nalang hehe ;) hmmm this new year my new years resolution is to post more on my blog weeeeeee and to socialize [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/weeeee-happy-new-year-welcome-me-back-again/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Detecting the data type of a PHP variable</title>
		<link>http://danieldumas.com/detecting-the-data-type-php-variable</link>
		<comments>http://danieldumas.com/detecting-the-data-type-php-variable#comments</comments>
		<pubDate>Fri, 28 Nov 2008 08:47:51 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=663</guid>
		<description><![CDATA[Detecting the datatype of a specific PHP variable can be done by using PHP gettype() function. refer below for example.

&#60;?php

//define variables
$on = true;
$age = 20;
$name = "daniel";
$price = 99.99;

//Returns Boolean
echo gettype($on);

//Returns String
echo gettype($name);

//Returns Integer
echo gettype($age);

//Returns Double
echo gettype($price);

?&#62;


You can also use other PHP functions to determine the datatypes of a variable



FUNCTION NAME


is_bool()
Checks if a variable is [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/detecting-the-data-type-php-variable/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Weee im back online…</title>
		<link>http://danieldumas.com/weee-im-back-online</link>
		<comments>http://danieldumas.com/weee-im-back-online#comments</comments>
		<pubDate>Tue, 25 Nov 2008 09:50:33 +0000</pubDate>
		<dc:creator>Daniel Dumas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[kwento lang]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=660</guid>
		<description><![CDATA[Woooo yeeepeee hehe im now back online again to blog after almost two weeks of being absent in the blogosphere wahehe. . im so busy kasi this past few days in school. .  yeah.. weeeee well there are so many things that i forgot to blog about.. and since i forgot those things, i [...]]]></description>
		<wfw:commentRss>http://danieldumas.com/weee-im-back-online/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
