<?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>Daniel Dumas &#187; Tips and Tutorials</title>
	<atom:link href="http://danieldumas.com/tag/tips-and-tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://danieldumas.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 30 Apr 2012 06:16:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>CSS Stylesheet Switcher using PHP</title>
		<link>http://danieldumas.com/css-stylesheet-switcher-using-php.php</link>
		<comments>http://danieldumas.com/css-stylesheet-switcher-using-php.php#comments</comments>
		<pubDate>Tue, 18 Jan 2011 19:54:53 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=1101</guid>
		<description><![CDATA[Hi everyone! today I&#8217;ll teach you how to separate CSS stylesheet for your website or web projects. there are many ways to do this but I am going to use PHP for this tutorial. As a Web Developer or Web Designer, it is important that website&#8217;s we develop are working on all major browsers, or [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone! today I&#8217;ll teach you how to separate CSS stylesheet for your website or web projects. there are many ways to do this but I am going to use PHP for this tutorial.</p>
<p>As a <a href="http://danieldumas.com/freelance-web-developer-philippines">Web Developer</a> or Web Designer, it is important that website&#8217;s we develop are working on all major browsers, or on all(old or new) browsers if possible. but some browsers (specially the old one&#8217;s) has their own specific way<span id="more-1101"></span> of translating or handling css /style directions.</p>
<p>And also sometimes we need to show or hide some specific elements for some browsers or browser versions.</p>
<p>for situations like the above, stylesheet separation for specific browsers can help.  look at the codes below.</p>
<pre class="php" name="code">&lt;?php
if(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 6")){
?&gt;
&lt;link rel="stylesheet" type="text/css" href="/css/ie6.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 7")) {
?&gt;
&lt;link rel="stylesheet" type="text/css" href="/css/ie7.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 8")) {
?&gt;
&lt;link rel="stylesheet" type="text/css" href="/css/ie8.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "Firefox")) {
?&gt;
&lt;link rel="stylesheet" type="text/css" href="/css/ff.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "Chrome")){
?&gt;
&lt;link rel="stylesheet" type="text/css" href="/css/chr.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "Safari")){
?&gt;
&lt;link rel="stylesheet" type="text/css" href="/css/saf.css" /&gt;
&lt;?php
}
?&gt;</pre>
<p>what this codes do is detect the users browser then prints the specific stylesheet for that browser. you can put this code directly below your main CSS stylesheet, because the primary use of this code is to override the main CSS settings. so for example a <strong>div </strong>is showing differently in IE6 browser, you can just include the style direction of this div into the ie6.css, so when a user browse your website using IE6 browser, the main CSS setting for this div will be override by ie6.css.</p>
<p>the code above can also be used on a wordpress blog or wordpress based sites, you just need to add your wordpress site&#8217;s template url to the CSS path. please look at the code below.</p>
<pre class="php" name="code">&lt;?php
if(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 6")){
?&gt;
&lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_url'); ?&gt;/css/ie6.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 7")) {
?&gt;
&lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_url'); ?&gt;/css/ie7.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE 8")) {
?&gt;
&lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_url'); ?&gt;/css/ie8.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "Firefox")) {
?&gt;
&lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_url'); ?&gt;/css/ff.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "Chrome")){
?&gt;
&lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_url'); ?&gt;/css/chr.css" /&gt;
&lt;?php
} elseif(strstr($_SERVER['HTTP_USER_AGENT'], "Safari")){
?&gt;
&lt;link rel="stylesheet" type="text/css" href="&lt;?php bloginfo('template_url'); ?&gt;/css/saf.css" /&gt;
&lt;?php
}
?&gt;</pre>
<p>You can insert this code into your wordpress theme&#8217;s header file (header.php), directly below the main CSS declaration:</p>
<pre name="code" class="php">
&lt;link rel="stylesheet" href="&lt;?php bloginfo('stylesheet_url'); ?&gt;" type="text/css" media="screen" /&gt;
</pre>
<p>Enjoy! please share.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;t=CSS+Stylesheet+Switcher+using+PHP" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;title=CSS+Stylesheet+Switcher+using+PHP" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;title=CSS+Stylesheet+Switcher+using+PHP" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;title=CSS+Stylesheet+Switcher+using+PHP&amp;srcUrl=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;srcTitle=CSS+Stylesheet+Switcher+using+PHP&amp;snippet=Hi%20everyone%21%20today%20I%27ll%20teach%20you%20how%20to%20separate%20CSS%20stylesheet%20for%20your%20website%20or%20web%20projects.%20there%20are%20many%20ways%20to%20do%20this%20but%20I%20am%20going%20to%20use%20PHP%20for%20this%20tutorial.%0D%0A%0D%0AAs%20a%20Web%20Developer%20or%20Web%20Designer%2C%20it%20is%20important%20that%20website%27s%20we%20develop%20are%20working%20on%20all%20major%20browsers%2C%20or%20on%20all" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;title=CSS+Stylesheet+Switcher+using+PHP" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;title=CSS+Stylesheet+Switcher+using+PHP" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/css-stylesheet-switcher-using-php.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=CSS+Stylesheet+Switcher+using+PHP+-+http://bit.ly/h0wxXp&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/css-stylesheet-switcher-using-php.php&amp;submitHeadline=CSS+Stylesheet+Switcher+using+PHP&amp;submitSummary=Hi%20everyone%21%20today%20I%27ll%20teach%20you%20how%20to%20separate%20CSS%20stylesheet%20for%20your%20website%20or%20web%20projects.%20there%20are%20many%20ways%20to%20do%20this%20but%20I%20am%20going%20to%20use%20PHP%20for%20this%20tutorial.%0D%0A%0D%0AAs%20a%20Web%20Developer%20or%20Web%20Designer%2C%20it%20is%20important%20that%20website%27s%20we%20develop%20are%20working%20on%20all%20major%20browsers%2C%20or%20on%20all&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fcss-stylesheet-switcher-using-php.php&amp;t=CSS+Stylesheet+Switcher+using+PHP" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=CSS+Stylesheet+Switcher+using+PHP&amp;body=Link: http://danieldumas.com/css-stylesheet-switcher-using-php.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hi%20everyone%21%20today%20I%27ll%20teach%20you%20how%20to%20separate%20CSS%20stylesheet%20for%20your%20website%20or%20web%20projects.%20there%20are%20many%20ways%20to%20do%20this%20but%20I%20am%20going%20to%20use%20PHP%20for%20this%20tutorial.%0D%0A%0D%0AAs%20a%20Web%20Developer%20or%20Web%20Designer%2C%20it%20is%20important%20that%20website%27s%20we%20develop%20are%20working%20on%20all%20major%20browsers%2C%20or%20on%20all" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/css-stylesheet-switcher-using-php.php/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress Search and Replace</title>
		<link>http://danieldumas.com/wordpress-search-and-replace.php</link>
		<comments>http://danieldumas.com/wordpress-search-and-replace.php#comments</comments>
		<pubDate>Thu, 13 Jan 2011 18:28:48 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=1027</guid>
		<description><![CDATA[Hey everyone, I am alive again to blog after a long time haha welcome back to me. I&#8217;ve decided to blog again to make this site alive in search engines because i been out for a very long time, and my site traffic and ranks has decreased huhu.. alright so much for the blah blah.. [...]]]></description>
			<content:encoded><![CDATA[<p>Hey everyone, I am alive again to blog after a long time haha welcome back to me. I&#8217;ve decided to blog again to make this site alive in search engines because i been out for a very long time, and my site traffic and ranks has decreased huhu.. alright so much for the blah blah..</p>
<p>well today I&#8217;ll share some ways on how to <strong>Search and Replace</strong> datas or texts in <strong>WordPress</strong>. this will be useful when you are transferring a wordpress blog from one domain to another or if you&#8217;ve developed a wordpress site on your localhost and you&#8217;re gonna upload it to an online server or on your own domain, of course you need to update the paths on your posts.</p>
<p>for example you&#8217;ve developed a wordpress site on your local machine and you installed it on http://localhost/wordpress, when you transfer the site into a live server, you need to change that path in your <span id="more-1027"></span>database for wordpress to display your blog posts or menu links correctly, and not only that &#8211; there may be times that you hardcoded a link (eg. images,post) in your blog post. i dont know for you, but for me updating it one by one is a no no.. i mean why are you gonna do it manually, when you can do it automatically? right? right? or left? haha..</p>
<p>Here are some other ways or situations on when you can use the <strong>search and replace function</strong>.</p>
<p><strong>1. Correcting a typographical Error</strong> &#8211; you discovered that one of the words you frequently use was mispelled, for example instead of typing a bacon, you are typing in and using the word vacon with a &#8220;V&#8221; all the time (haha..)</p>
<p><strong>2. Updating a Name/Word </strong>- you want to change <strong>word1 </strong>to <strong>word2, </strong>or <strong>name1 </strong>to <strong>name2</strong></p>
<p><strong>3. Deleting Weird Characters </strong>- you are copying and pasting articles from one site or documents and you didn&#8217;t noticed that some special characters are also copied eg. Â, ♠ , ¶ ,Æ and so on..</p>
<p>Here are some methods that you can do to <strong>search and replace </strong> texts in wordpress database or blog posts.</p>
<p><strong>1. using MySQL search and replace function within PHPMYADMIN</strong></p>
<p>open your wordpress database using phpmyadmin, click the <strong>SQL </strong>tab and enter the following codes:</p>
<pre class="php" name="code">UPDATE wp_posts SET post_content = REPLACE (
post_content,
'OLD TEXT',
'NEW TEXT');</pre>
<p>the code above uses the <strong>MySQL replace </strong>function to first search the OLD TEXT in the wp_posts table then post_content field, and when found replace it with the NEW TEXT.</p>
<p>you can search and replace datas from any tables/table fields in the database. you can also use this method on any applications that uses mysql as a database.</p>
<p><strong>2. using WordPress Search and Replace Plugin</strong></p>
<p>same functionality as the mysql replace function, the only difference is this plugin provides a user interface within the wordpress admin panel. you can download the plugin here.<a href="http://wordpress.org/extend/plugins/search-and-replace/" target="_blank"> http://wordpress.org/extend/plugins/search-and-replace/</a></p>
<p>NOTE: Don&#8217;t forget to create a<strong> back up of your database</strong> <em>first </em>before trying any of the methods above. ok? it&#8217;s better to be sure, right? <img src='http://danieldumas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Enjoy! please share.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/wordpress-search-and-replace.php&amp;t=Wordpress+Search+and+Replace" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/wordpress-search-and-replace.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/wordpress-search-and-replace.php&amp;title=Wordpress+Search+and+Replace" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/wordpress-search-and-replace.php&amp;title=Wordpress+Search+and+Replace" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/wordpress-search-and-replace.php&amp;title=Wordpress+Search+and+Replace&amp;srcUrl=http://danieldumas.com/wordpress-search-and-replace.php&amp;srcTitle=Wordpress+Search+and+Replace&amp;snippet=Hey%20everyone%2C%20I%20am%20alive%20again%20to%20blog%20after%20a%20long%20time%20haha%20welcome%20back%20to%20me.%20I%27ve%20decided%20to%20blog%20again%20to%20make%20this%20site%20alive%20in%20search%20engines%20because%20i%20been%20out%20for%20a%20very%20long%20time%2C%20and%20my%20site%20traffic%20and%20ranks%20has%20decreased%20huhu..%20alright%20so%20much%20for%20the%20blah%20blah..%0D%0A%0D%0Awell%20today%20I%27ll%20sh" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/wordpress-search-and-replace.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/wordpress-search-and-replace.php&amp;title=Wordpress+Search+and+Replace" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/wordpress-search-and-replace.php&amp;title=Wordpress+Search+and+Replace" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/wordpress-search-and-replace.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Wordpress+Search+and+Replace+-+http://bit.ly/dI4Vvp&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/wordpress-search-and-replace.php&amp;submitHeadline=Wordpress+Search+and+Replace&amp;submitSummary=Hey%20everyone%2C%20I%20am%20alive%20again%20to%20blog%20after%20a%20long%20time%20haha%20welcome%20back%20to%20me.%20I%27ve%20decided%20to%20blog%20again%20to%20make%20this%20site%20alive%20in%20search%20engines%20because%20i%20been%20out%20for%20a%20very%20long%20time%2C%20and%20my%20site%20traffic%20and%20ranks%20has%20decreased%20huhu..%20alright%20so%20much%20for%20the%20blah%20blah..%0D%0A%0D%0Awell%20today%20I%27ll%20sh&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fwordpress-search-and-replace.php&amp;t=Wordpress+Search+and+Replace" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Wordpress+Search+and+Replace&amp;body=Link: http://danieldumas.com/wordpress-search-and-replace.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hey%20everyone%2C%20I%20am%20alive%20again%20to%20blog%20after%20a%20long%20time%20haha%20welcome%20back%20to%20me.%20I%27ve%20decided%20to%20blog%20again%20to%20make%20this%20site%20alive%20in%20search%20engines%20because%20i%20been%20out%20for%20a%20very%20long%20time%2C%20and%20my%20site%20traffic%20and%20ranks%20has%20decreased%20huhu..%20alright%20so%20much%20for%20the%20blah%20blah..%0D%0A%0D%0Awell%20today%20I%27ll%20sh" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/wordpress-search-and-replace.php/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer (IE) or CSS Conditional Statements</title>
		<link>http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php</link>
		<comments>http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php#comments</comments>
		<pubDate>Fri, 31 Oct 2008 03:36:06 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=589</guid>
		<description><![CDATA[Internet Explorer conditional statement or CSS Conditional statements is a bit of code specially made for Internet Explorer browers which instructs ie browser to perform specific instructions only for internet explorer browser, only windows platform supports ie conditional statements. the basic structure or syntax of conditional statements is just..like plain HTML comments so therefore you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Internet Explorer conditional statement or CSS Conditional statements</strong> is a bit of code specially made for Internet Explorer browers which instructs ie browser to perform specific instructions only for internet explorer browser, only windows platform supports ie conditional statements.</p>
<p>the basic structure or syntax of conditional statements is just..<span id="more-589"></span>like plain HTML comments so therefore you can only use it inside an html file..</p>
<p>here are some examples of Internet Explorer Conditional Statement syntax</p>
<pre name="code" class="html">&lt;!--[if IE 6]&gt;
enter your instructions for ie6 here
&lt;![endif]--&gt;</pre>
<pre name="code" class="html">&lt;!--[if gte IE 5]&gt;
enter your instructions for ie browers greater than or equal to ie5
&lt;![endif]--&gt;</pre>
<pre name="code" class="html">&lt;!--[if lte IE 6]&gt;
enter your instructions for ie browsers lower or equal to ie6
&lt;![endif]--&gt;</pre>
<pre name="code" class="html">&lt;!--[if lt IE 6]&gt;
enter your instructions for ie browsers lower than ie6
&lt;![endif]--&gt;</pre>
<pre name="code" class="html">&lt;!--[if gt IE 6]&gt;
enter your instructions for ie6 here
&lt;![endif]--&gt;</pre>
<p>this is very usefull for example if you want to separate a css file for different different versions<br />
of internet explorer you can use this, or if you want to output messages to your site visitor telling<br />
them that they are using ie. here are some examples</p>
<p><strong>Using conditional statement to separate css stylesheet</strong></p>
<pre name="code" class="html">&lt;!--[if IE 6]&gt;
&lt;link rel="stylesheet" type="text/css" href="ie6.css"&gt;
&lt;![endif]--&gt;</pre>
<pre name="code" class="html">&lt;!--[if IE 7]&gt;
&lt;link rel="stylesheet" type="text/css" href="ie7.css"&gt;
&lt;![endif]--&gt;</pre>
<p><strong>Using Conditional statement to output text to the browser</strong></p>
<pre name="code" class="html">&lt;!--[if IE 6]&gt;
Hi There! You are using Internet Explorer 6
&lt;![endif]--&gt;</pre>
<pre name="code" class="html">&lt;!--[if IE 5]&gt;
Hi there! You are a legend your still using IE5?
&lt;![endif]--&gt;</pre>
<p>Enjoy <img src='http://danieldumas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;t=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;title=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;title=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;title=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements&amp;srcUrl=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;srcTitle=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements&amp;snippet=Internet%20Explorer%20conditional%20statement%20or%20CSS%20Conditional%20statements%20is%20a%20bit%20of%20code%20specially%20made%20for%20Internet%20Explorer%20browers%20which%20instructs%20ie%20browser%20to%20perform%20specific%20instructions%20only%20for%20internet%20explorer%20browser%2C%20only%20windows%20platform%20supports%20ie%20conditional%20statements.%0A%0Athe%20basic%20str" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;title=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;title=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements+-+http://b2l.me/ah4mzs&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php&amp;submitHeadline=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements&amp;submitSummary=Internet%20Explorer%20conditional%20statement%20or%20CSS%20Conditional%20statements%20is%20a%20bit%20of%20code%20specially%20made%20for%20Internet%20Explorer%20browers%20which%20instructs%20ie%20browser%20to%20perform%20specific%20instructions%20only%20for%20internet%20explorer%20browser%2C%20only%20windows%20platform%20supports%20ie%20conditional%20statements.%0A%0Athe%20basic%20str&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Finternet-explorer-ie-css-conditional-statement.php&amp;t=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Internet+Explorer+%28IE%29+or+CSS+Conditional+Statements&amp;body=Link: http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Internet%20Explorer%20conditional%20statement%20or%20CSS%20Conditional%20statements%20is%20a%20bit%20of%20code%20specially%20made%20for%20Internet%20Explorer%20browers%20which%20instructs%20ie%20browser%20to%20perform%20specific%20instructions%20only%20for%20internet%20explorer%20browser%2C%20only%20windows%20platform%20supports%20ie%20conditional%20statements.%0A%0Athe%20basic%20str" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/internet-explorer-ie-css-conditional-statement.php/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Comment Luv + Linky Luv = Link Love (Do Follow)</title>
		<link>http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php</link>
		<comments>http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php#comments</comments>
		<pubDate>Thu, 30 Oct 2008 23:31:59 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=587</guid>
		<description><![CDATA[Weeee my blog is now a do follow blog thanks to lucias&#8217; linky love do-follow plugin for wordpress this plugin is shared to me by Andy bailey the creator of Comment luv plugin. i set linky luv plugin to make links do follow after 5 comments so that my loyal commenters can benefit for sharing [...]]]></description>
			<content:encoded><![CDATA[<p>Weeee my blog is now a do follow blog thanks to <strong>lucias&#8217; linky love</strong> do-follow plugin for wordpress this plugin is shared to me by Andy bailey the creator of <strong>Comment luv plugin</strong>. i set linky luv plugin to make links do follow after 5 comments so that my loyal commenters can benefit for sharing their ideas <img src='http://danieldumas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  actually its been a week since i found this plugin and i have seen many blog sites using these two plugins together which <span id="more-587"></span>made me decide to install it today hehe  =D . this two plugins are a great help if you are building a backlinks to your blogsite, actually thats what im doing to promote my individual post i googled blogs which uses comment luv and linky luv so that i can get a free backlinks for my site and for individual post also. i also compiled sites that i&#8217;ve visited with comment luv and link love enabled, i will share that in my next post so  keep an eye hehe <img src='http://danieldumas.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   if want to use this plugin too you may download it by going to <a title="Lucias Link Love Plugin" rel="nofollow" href="http://money.bigbucksblogger.com/lucias-linky-love-a-dofollow-plugin-to-foil-human-comment-spammers/" target="_blank"><strong>lucias website</strong></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;t=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;title=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;title=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;title=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29&amp;srcUrl=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;srcTitle=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29&amp;snippet=Weeee%20my%20blog%20is%20now%20a%20do%20follow%20blog%20thanks%20to%20lucias%27%20linky%20love%20do-follow%20plugin%20for%20wordpress%20this%20plugin%20is%20shared%20to%20me%20by%20Andy%20bailey%20the%20creator%20of%20Comment%20luv%20plugin.%20i%20set%20linky%20luv%20plugin%20to%20make%20links%20do%20follow%20after%205%20comments%20so%20that%20my%20loyal%20commenters%20can%20benefit%20for%20sharing%20their%20id" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;title=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;title=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29+-+http://b2l.me/ah5b2x&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php&amp;submitHeadline=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29&amp;submitSummary=Weeee%20my%20blog%20is%20now%20a%20do%20follow%20blog%20thanks%20to%20lucias%27%20linky%20love%20do-follow%20plugin%20for%20wordpress%20this%20plugin%20is%20shared%20to%20me%20by%20Andy%20bailey%20the%20creator%20of%20Comment%20luv%20plugin.%20i%20set%20linky%20luv%20plugin%20to%20make%20links%20do%20follow%20after%205%20comments%20so%20that%20my%20loyal%20commenters%20can%20benefit%20for%20sharing%20their%20id&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fcomment-luv-linky-luv-link-love-do-follow.php&amp;t=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Comment+Luv+%2B+Linky+Luv+%3D+Link+Love+%28Do+Follow%29&amp;body=Link: http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Weeee%20my%20blog%20is%20now%20a%20do%20follow%20blog%20thanks%20to%20lucias%27%20linky%20love%20do-follow%20plugin%20for%20wordpress%20this%20plugin%20is%20shared%20to%20me%20by%20Andy%20bailey%20the%20creator%20of%20Comment%20luv%20plugin.%20i%20set%20linky%20luv%20plugin%20to%20make%20links%20do%20follow%20after%205%20comments%20so%20that%20my%20loyal%20commenters%20can%20benefit%20for%20sharing%20their%20id" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/comment-luv-linky-luv-link-love-do-follow.php/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Fix wordpress fatal error allowed memory size exhausted</title>
		<link>http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php</link>
		<comments>http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php#comments</comments>
		<pubDate>Fri, 24 Oct 2008 02:24:30 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=506</guid>
		<description><![CDATA[Fatal error: Allowed memory size of &#8230;&#8230; bytes exhausted (tried to allocate &#8230;. bytes) in home/of/some/thing/fishy.php I experienced this weird WordPress or rather PHP error last night when trying to view my blog when i got home, at first i thought that there was a technical problem at my server so i waited, then i [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>Fatal error:  Allowed memory size of &#8230;&#8230; bytes exhausted (tried to allocate &#8230;. bytes) in home/of/some/thing/fishy.php  <img src='http://danieldumas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
</strong></p></blockquote>
<p><a href="http://localhost/danieldumas.com/wp-content/uploads/2008/10/wordpress_php1.jpg"><img class="alignright size-full wp-image-547" title="wordpress_php" src="http://localhost/danieldumas.com/wp-content/uploads/2008/10/wordpress_php1.jpg" alt="Wordpress Fatal Error allowed memory size exhausted" width="161" height="86" /></a>I experienced this weird WordPress or rather PHP error last night when trying to view my blog when i got home, at first i thought that there was a technical problem at my server so i waited, then i waited and waited and waited again for almost 7 hours then i cant wait no more i want to blogggg&#8230; so i contact my hosting provider and they told me that there is nothing wrong with the server nahhh WTF! i told to my self. . <img src='http://danieldumas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <span id="more-506"></span>but i cant figure out the problem at first. .then i figure out that i can access other part of my site. .so i said to myself.. hmm maybe its because of the plugin that i last installed so again i waited and let the night past but the error was still there when i woke up. .did you know what did i do? haha call me dumb coz i dont know what to do so i decided to delete my blog files and install wordpress again but ofcourse i backed up my database so i can restore. . but the problem is still there nahh WTF again i said to my self. . haha <img src='http://danieldumas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  until i found a bit of code that can save my life <em>sana </em>haha <img src='http://danieldumas.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> hhyeahh:  . . <strong>PHP Memory Allocation Error</strong> was the real problem it is an error returned by php when it used up the default memory limit, it occurs when PHP is handling or processing a large amount of data or records more that its default memory allocation. I found to 3 ways to Fix this problem</p>
<p><span style="color: #ff0000;"><strong>1st: </strong><span style="color: #000000;">Increase the memory limit of an individual PHP file</span></span></p>
<pre name="code" class="php">ini_set(”memory_limit”,”16M”);</pre>
<p>Put this code at the top of every PHP file that errors are showing, you can expand the memory by changing the 16M to a other value if your still getting errors,. you can set it to 16M, 18M etc..</p>
<p><strong><span style="color: #ff0000;">2nd:</span> </strong>edit your PHP.INI file &#8211; this option will apply to all the php files in your site</p>
<p>search your php.ini file and find <strong>memory_limit: </strong>put values like at the top for example</p>
<pre name="code" class="php">memory_limit: 16M</pre>
<p><strong><span style="color: #ff0000;">3rd:</span> </strong>use .htaccess to expand the memory allocation &#8211; this option will apply to all the php files in your site</p>
<pre name="code" class="php">php_value memory_limit 32000000</pre>
<p>Copy and paste the code above to your .htaccess file</p>
<p>Thats it! the errors are gone <img src='http://danieldumas.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;t=Fix+wordpress+fatal+error+allowed+memory+size+exhausted" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;title=Fix+wordpress+fatal+error+allowed+memory+size+exhausted" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;title=Fix+wordpress+fatal+error+allowed+memory+size+exhausted" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;title=Fix+wordpress+fatal+error+allowed+memory+size+exhausted&amp;srcUrl=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;srcTitle=Fix+wordpress+fatal+error+allowed+memory+size+exhausted&amp;snippet=Fatal%20error%3A%20%20Allowed%20memory%20size%20of%20......%20bytes%20exhausted%20%28tried%20to%20allocate%20....%20bytes%29%20in%20home%2Fof%2Fsome%2Fthing%2Ffishy.php%20%20%3A%29%0A%0AI%20experienced%20this%20weird%20Wordpress%20or%20rather%20PHP%20error%20last%20night%20when%20trying%20to%20view%20my%20blog%20when%20i%20got%20home%2C%20at%20first%20i%20thought%20that%20there%20was%20a%20technical%20problem%20at%20my%20s" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;title=Fix+wordpress+fatal+error+allowed+memory+size+exhausted" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;title=Fix+wordpress+fatal+error+allowed+memory+size+exhausted" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fix+wordpress+fatal+error+allowed+memory+size+exhausted+-+http://b2l.me/ah3q94&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php&amp;submitHeadline=Fix+wordpress+fatal+error+allowed+memory+size+exhausted&amp;submitSummary=Fatal%20error%3A%20%20Allowed%20memory%20size%20of%20......%20bytes%20exhausted%20%28tried%20to%20allocate%20....%20bytes%29%20in%20home%2Fof%2Fsome%2Fthing%2Ffishy.php%20%20%3A%29%0A%0AI%20experienced%20this%20weird%20Wordpress%20or%20rather%20PHP%20error%20last%20night%20when%20trying%20to%20view%20my%20blog%20when%20i%20got%20home%2C%20at%20first%20i%20thought%20that%20there%20was%20a%20technical%20problem%20at%20my%20s&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fwordpress-fatal-error-allowed-memory-size-exhausted.php&amp;t=Fix+wordpress+fatal+error+allowed+memory+size+exhausted" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Fix+wordpress+fatal+error+allowed+memory+size+exhausted&amp;body=Link: http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Fatal%20error%3A%20%20Allowed%20memory%20size%20of%20......%20bytes%20exhausted%20%28tried%20to%20allocate%20....%20bytes%29%20in%20home%2Fof%2Fsome%2Fthing%2Ffishy.php%20%20%3A%29%0A%0AI%20experienced%20this%20weird%20Wordpress%20or%20rather%20PHP%20error%20last%20night%20when%20trying%20to%20view%20my%20blog%20when%20i%20got%20home%2C%20at%20first%20i%20thought%20that%20there%20was%20a%20technical%20problem%20at%20my%20s" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/wordpress-fatal-error-allowed-memory-size-exhausted.php/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL Basics: Comments</title>
		<link>http://danieldumas.com/php-and-mysql-basics-comments.php</link>
		<comments>http://danieldumas.com/php-and-mysql-basics-comments.php#comments</comments>
		<pubDate>Tue, 23 Sep 2008 21:29:00 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=217</guid>
		<description><![CDATA[For greater readability of your PHP code, you should add comments to it, so that you or other people who will look at the code later will understand it clearly. To do this refer to the example below.. PHP Single Line Comment: &#60;?php // Hi There I am a PHP single line comment! ?&#62; PHP [...]]]></description>
			<content:encoded><![CDATA[<p>For greater readability of your PHP code, you should add comments to it, so that you or other people who will look at the code later will understand it clearly.</p>
<p>To do this refer to the example below..</p>
<p><strong>PHP Single Line Comment:</strong><span id="more-217"></span></p>
<pre name="code" class="php">&lt;?php
// Hi There I am a PHP single line comment!
?&gt;</pre>
<p><strong>PHP Multi-Line comment:</strong></p>
<pre name="code" class="php">&lt;?php
/* Hello everybody I am
PHP Multi-Line Comment */
?&gt;</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;t=PHP+and+MySQL+Basics%3A+Comments" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/php-and-mysql-basics-comments.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;title=PHP+and+MySQL+Basics%3A+Comments" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;title=PHP+and+MySQL+Basics%3A+Comments" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;title=PHP+and+MySQL+Basics%3A+Comments&amp;srcUrl=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;srcTitle=PHP+and+MySQL+Basics%3A+Comments&amp;snippet=For%20greater%20readability%20of%20your%20PHP%20code%2C%20you%20should%20add%20comments%20to%20it%2C%20so%20that%20you%20or%20other%20people%20who%20will%20look%20at%20the%20code%20later%20will%20understand%20it%20clearly.%0A%0ATo%20do%20this%20refer%20to%20the%20example%20below..%0A%0APHP%20Single%20Line%20Comment%3A%0A%26lt%3B%3Fphp%0A%2F%2F%20Hi%20There%20I%20am%20a%20PHP%20single%20line%20comment%21%0A%3F%26gt%3B%0APHP%20Multi-Lin" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;title=PHP+and+MySQL+Basics%3A+Comments" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;title=PHP+and+MySQL+Basics%3A+Comments" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/php-and-mysql-basics-comments.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+and+MySQL+Basics%3A+Comments+-+http://b2l.me/ah5aC3&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/php-and-mysql-basics-comments.php&amp;submitHeadline=PHP+and+MySQL+Basics%3A+Comments&amp;submitSummary=For%20greater%20readability%20of%20your%20PHP%20code%2C%20you%20should%20add%20comments%20to%20it%2C%20so%20that%20you%20or%20other%20people%20who%20will%20look%20at%20the%20code%20later%20will%20understand%20it%20clearly.%0A%0ATo%20do%20this%20refer%20to%20the%20example%20below..%0A%0APHP%20Single%20Line%20Comment%3A%0A%26lt%3B%3Fphp%0A%2F%2F%20Hi%20There%20I%20am%20a%20PHP%20single%20line%20comment%21%0A%3F%26gt%3B%0APHP%20Multi-Lin&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fphp-and-mysql-basics-comments.php&amp;t=PHP+and+MySQL+Basics%3A+Comments" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=PHP+and+MySQL+Basics%3A+Comments&amp;body=Link: http://danieldumas.com/php-and-mysql-basics-comments.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A For%20greater%20readability%20of%20your%20PHP%20code%2C%20you%20should%20add%20comments%20to%20it%2C%20so%20that%20you%20or%20other%20people%20who%20will%20look%20at%20the%20code%20later%20will%20understand%20it%20clearly.%0A%0ATo%20do%20this%20refer%20to%20the%20example%20below..%0A%0APHP%20Single%20Line%20Comment%3A%0A%26lt%3B%3Fphp%0A%2F%2F%20Hi%20There%20I%20am%20a%20PHP%20single%20line%20comment%21%0A%3F%26gt%3B%0APHP%20Multi-Lin" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/php-and-mysql-basics-comments.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL Basics: Your First PHP Script</title>
		<link>http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php</link>
		<comments>http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php#comments</comments>
		<pubDate>Tue, 23 Sep 2008 18:59:41 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=198</guid>
		<description><![CDATA[Now that you know the basic syntax of PHP, let me congratulate you, congrats! hehe. . You are now ready to learn your very first PHP script. consider this example on embedding your first PHP script into HTML. &#60;html&#62; &#60;head&#62; &#60;title&#62;Hello World!&#60;/title&#62; &#60;/head&#62; &#60;body&#62; &#60;!-- This is how you print output in PHP--&#62; &#60;h2&#62;&#60;?php echo [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you know the basic syntax of PHP, let me congratulate you, congrats! <em>hehe. . </em>You are now ready to learn your very first PHP script.</p>
<p>consider this example on embedding your first PHP script into HTML.</p>
<pre name="code" class="php">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Hello World!&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;!-- This is how you print output in PHP--&gt;

&lt;h2&gt;&lt;?php echo "Philippines is a beautiful country!"; ?&gt;&lt;/h2&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>copy and save this to your text editor with a .php extension then run it on your localhost..<span id="more-198"></span></p>
<p><strong><span style="color: #3366ff;">echo</span></strong> &#8211; is a function for printing output.</p>
<p><strong><span style="color: #ff0000;">Remember:</span></strong> you should always end your php statement with a semicolon <strong>( ; ) </strong>or else you will get an error, this is true if you have complex php statement, but in the example above it will work fine even if we remove the semicolon at the end of our statement because the closing tag <strong>?&gt;</strong> has an implicit semicolon, however it is a good programming practice to end php statement with a semicolon.<strong> </strong></p>
<p>you should get this output from your browser..</p>
<p><a href="http://localhost/wordpress/wp-content/uploads/2008/09/helloworld2.jpg"><img class="alignnone size-full wp-image-52" title="helloworld2" src="http://localhost/wordpress/wp-content/uploads/2008/09/helloworld2.jpg" alt="" width="449" height="307" /></a></p>
<p><strong><span style="color: #ff0000;">Remember: </span></strong><span style="color: #000000;">White space is not important in php, so&#8230;</span></p>
<pre name="code" class="php">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Hello World!&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;!-- This is how you print output in PHP--&gt;

&lt;h2&gt;&lt;?php

echo "Philippines is a beautiful country!";

?&gt;&lt;/h2&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>would yield the same output as above.</p>
<p>if you look at the HTML source at your browser you should see something like this. .</p>
<pre name="code" class="php">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Hello World!&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;!- - This is how you print output in PHP- -&gt;

&lt;h2&gt;Philippines is a beautiful country!&lt;/h2&gt;

&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Notice that the php tags didnt show up.. it&#8217;s because the server understand our php script it processed it and just return to the browser the output which is a valid HTML.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;t=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;title=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;title=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;title=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script&amp;srcUrl=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;srcTitle=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script&amp;snippet=Now%20that%20you%20know%20the%20basic%20syntax%20of%20PHP%2C%20let%20me%20congratulate%20you%2C%20congrats%21%20hehe.%20.%20You%20are%20now%20ready%20to%20learn%20your%20very%20first%20PHP%20script.%0A%0Aconsider%20this%20example%20on%20embedding%20your%20first%20PHP%20script%20into%20HTML.%0A%26lt%3Bhtml%26gt%3B%0A%26lt%3Bhead%26gt%3B%0A%26lt%3Btitle%26gt%3BHello%20World%21%26lt%3B%2Ftitle%26gt%3B%0A%26lt%3B%2Fhead%26gt%3B%0A%26lt%3Bbody%26g" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;title=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;title=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script+-+http://b2l.me/ah36dy&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php&amp;submitHeadline=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script&amp;submitSummary=Now%20that%20you%20know%20the%20basic%20syntax%20of%20PHP%2C%20let%20me%20congratulate%20you%2C%20congrats%21%20hehe.%20.%20You%20are%20now%20ready%20to%20learn%20your%20very%20first%20PHP%20script.%0A%0Aconsider%20this%20example%20on%20embedding%20your%20first%20PHP%20script%20into%20HTML.%0A%26lt%3Bhtml%26gt%3B%0A%26lt%3Bhead%26gt%3B%0A%26lt%3Btitle%26gt%3BHello%20World%21%26lt%3B%2Ftitle%26gt%3B%0A%26lt%3B%2Fhead%26gt%3B%0A%26lt%3Bbody%26g&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fphp-and-mysql-basics-your-first-php-file.php&amp;t=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=PHP+and+MySQL+Basics%3A+Your+First+PHP+Script&amp;body=Link: http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Now%20that%20you%20know%20the%20basic%20syntax%20of%20PHP%2C%20let%20me%20congratulate%20you%2C%20congrats%21%20hehe.%20.%20You%20are%20now%20ready%20to%20learn%20your%20very%20first%20PHP%20script.%0A%0Aconsider%20this%20example%20on%20embedding%20your%20first%20PHP%20script%20into%20HTML.%0A%26lt%3Bhtml%26gt%3B%0A%26lt%3Bhead%26gt%3B%0A%26lt%3Btitle%26gt%3BHello%20World%21%26lt%3B%2Ftitle%26gt%3B%0A%26lt%3B%2Fhead%26gt%3B%0A%26lt%3Bbody%26g" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/php-and-mysql-basics-your-first-php-file.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL Basics: Syntax</title>
		<link>http://danieldumas.com/php-and-mysql-basics-syntax.php</link>
		<comments>http://danieldumas.com/php-and-mysql-basics-syntax.php#comments</comments>
		<pubDate>Tue, 23 Sep 2008 17:37:25 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=188</guid>
		<description><![CDATA[PHP syntax is very simple it has 3 main parts, the first part is the php opening tag which is &#60;?php, after that is your PHP CODE then the last part is the php closing tag which is ?&#62; it looks like this.. &#60;?php . . . . . . . . . . . [...]]]></description>
			<content:encoded><![CDATA[<p>PHP syntax is very simple it has 3 main parts, the first part is the php opening tag which is <strong>&lt;?php, </strong>after that is your <strong>PHP CODE </strong>then the last part is the php closing tag which is <strong>?&gt;</strong></p>
<p>it looks like this..</p>
<pre name="code" class="php">
&lt;?php
. . . . . . . . . . . . . . . . . . . . . .
YOUR PHP CODE HERE
. . . . . . . . . . . . . . . . . . . . . .
?&gt;</pre>
<p>you can also use the PHP <strong>Short open tags</strong>:</p>
<pre name="code" class="php">
&lt;? ?&gt;
&lt;?= ?&gt;
</pre>
<p>but this is considered a bad habit.. you can use this tags but be sure that short open tag is set to <strong>on</strong> in your PHP.INI file.</p>
<p><span id="more-188"></span>there is another tag style which is the <strong>ASP Style Tag: </strong></p>
<pre name="code" class="php">
&lt;% %&gt;
&lt;%= &gt;
</pre>
<p>this is considered as a very bad habit.. because it doesn&#8217;t always work, for example your friend send you a php file using this style and you run it on your server, but suddenly your server doesn&#8217;t allow the use of this tags, of course the code wont work!</p>
<p>you can use these style but you also need to enable them in the PHP.INI file..</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;t=PHP+and+MySQL+Basics%3A+Syntax" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;title=PHP+and+MySQL+Basics%3A+Syntax" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;title=PHP+and+MySQL+Basics%3A+Syntax" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;title=PHP+and+MySQL+Basics%3A+Syntax&amp;srcUrl=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;srcTitle=PHP+and+MySQL+Basics%3A+Syntax&amp;snippet=PHP%20syntax%20is%20very%20simple%20it%20has%203%20main%20parts%2C%20the%20first%20part%20is%20the%20php%20opening%20tag%20which%20is%20%26lt%3B%3Fphp%2C%20after%20that%20is%20your%20PHP%20CODE%20then%20the%20last%20part%20is%20the%20php%20closing%20tag%20which%20is%20%3F%26gt%3B%0A%0Ait%20looks%20like%20this..%0A%0A%26lt%3B%3Fphp%0A.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%0AYOUR%20PHP%20CODE%20HERE%0A.%20.%20.%20.%20.%20.%20.%20.%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;title=PHP+and+MySQL+Basics%3A+Syntax" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;title=PHP+and+MySQL+Basics%3A+Syntax" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/php-and-mysql-basics-syntax.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+and+MySQL+Basics%3A+Syntax+-+http://b2l.me/ajeeqb&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/php-and-mysql-basics-syntax.php&amp;submitHeadline=PHP+and+MySQL+Basics%3A+Syntax&amp;submitSummary=PHP%20syntax%20is%20very%20simple%20it%20has%203%20main%20parts%2C%20the%20first%20part%20is%20the%20php%20opening%20tag%20which%20is%20%26lt%3B%3Fphp%2C%20after%20that%20is%20your%20PHP%20CODE%20then%20the%20last%20part%20is%20the%20php%20closing%20tag%20which%20is%20%3F%26gt%3B%0A%0Ait%20looks%20like%20this..%0A%0A%26lt%3B%3Fphp%0A.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%0AYOUR%20PHP%20CODE%20HERE%0A.%20.%20.%20.%20.%20.%20.%20.%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fphp-and-mysql-basics-syntax.php&amp;t=PHP+and+MySQL+Basics%3A+Syntax" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=PHP+and+MySQL+Basics%3A+Syntax&amp;body=Link: http://danieldumas.com/php-and-mysql-basics-syntax.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A PHP%20syntax%20is%20very%20simple%20it%20has%203%20main%20parts%2C%20the%20first%20part%20is%20the%20php%20opening%20tag%20which%20is%20%26lt%3B%3Fphp%2C%20after%20that%20is%20your%20PHP%20CODE%20then%20the%20last%20part%20is%20the%20php%20closing%20tag%20which%20is%20%3F%26gt%3B%0A%0Ait%20looks%20like%20this..%0A%0A%26lt%3B%3Fphp%0A.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%0AYOUR%20PHP%20CODE%20HERE%0A.%20.%20.%20.%20.%20.%20.%20.%20" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/php-and-mysql-basics-syntax.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL Basics: Software Needed</title>
		<link>http://danieldumas.com/php-and-mysql-basics-software-needed.php</link>
		<comments>http://danieldumas.com/php-and-mysql-basics-software-needed.php#comments</comments>
		<pubDate>Sun, 21 Sep 2008 01:53:25 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=170</guid>
		<description><![CDATA[Now that you have a little background about PHP, let&#8217;s now talk about the tools/software that you need in this lesson. WHAT DO YOU NEED&#8230; A Web Server - Apache / IIS will work too.. PHP - so that our web server can understand our php file. Database - MySQL Text Editor - Notepad, Dreamweaver, [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you have a little background about PHP, let&#8217;s now talk about the tools/software that you need in this lesson.</p>
<p><span style="color: #99cc00;"><strong>WHAT DO YOU NEED&#8230;</strong></span></p>
<ol>
<li>A Web Server <span style="color: #ff9900;">- <em>Apache</em></span><span style="color: #ff0000;"><span style="color: #ff9900;"> <em>/ IIS will work too..</em></span><br />
</span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">PHP</span> </span><span style="color: #ff0000;"><span style="color: #ff9900;">- </span><em><span style="color: #ff9900;">so that our web server can understand our php file.</span><br />
</em></span></span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;">Database <span style="color: #ff9900;"><em>- MySQL</em></span></span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;">Text Editor<span style="color: #ff9900;"> </span><span style="color: #ff9900;">- <em>Notepad, Dreamweaver, PHP Designer or any text editor that you want..</em></span></span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;">Web Browser <span style="color: #ff9900;">- <em>you can use any broswer of your choice(Firefox, IE, SAFARI, OPERA, Chrome)..</em></span></span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;"><span style="color: #ff0000;"><span style="color: #000000;">Operating System</span> <span style="color: #ff9900;">- Linux, Windows or Mac OS.<br />
</span></span></span></span></li>
</ol>
<p><span id="more-170"></span></p>
<ol></ol>
<p><span style="color: #99cc00;"><strong><span style="text-decoration: underline;">In this tutorial you may use any of the following:</span></strong></span></p>
<p><span style="color: #99cc00;"><strong>LAMP</strong></span> stands for <strong><em>Linux, Apache, MysQL, PHP</em></strong></p>
<p><span style="color: #99cc00;"><strong>WAMP</strong></span> stands for <strong><em>Windows, Apache, MysQL, PHP</em></strong></p>
<p><span style="color: #99cc00;"><strong>MAMP</strong></span> stands for <strong><em>Mac, Apache, MysQL, PHP</em></strong></p>
<p><span style="color: #99cc00;"><strong>XAMPP</strong></span> stands for <strong><em>Any OS, Apache, MysQL, PHP, Perl<br />
</em></strong></p>
<p><span style="color: #ff9900;"><em>choose any of the above mentioned depending on the operating system you&#8217;re using, this is includes all the source code, binaries, folders etc.. in just one installation!</em></span></p>
<p><span style="color: #99cc00;"><strong>DOWNLOAD LINK&#8230;</strong></span> <span style="color: #ff9900;"><em></em></span></p>
<p><span style="color: #ff9900;"><em>download the latest stable package..</em></span></p>
<p><strong>XAMPP</strong> &#8211; <a title="Download XAMPP" href="http://www.apachefriends.org/en/" target="_blank">http://www.apachefriends.org/en/</a></p>
<p><strong>WAMP &#8211; </strong><a title="Download WAMP" href="http://www.wampserver.com/en/" target="_blank">http://www.wampserver.com/en/</a></p>
<p><strong>MAMP</strong> &#8211; <a title="Download MAMP" href="http://www.mamp.info/en/download.html" target="_blank">http://www.mamp.info/en/download.html</a></p>
<p><em><span style="color: #ff0000;"><span style="color: #ff9900;">f</span><span style="color: #ff9900;">or linux users you may just download xampp..</span></span></em></p>
<p><span style="text-decoration: underline;">After downloading Install it and now you&#8217;re good to go&#8230;</span></p>
<p><strong>*</strong> for windows user, open your favorite browser then type <strong>http://localhost </strong>on the address bar</p>
<p><strong>* </strong>for mac users do the same thing but put ~youruserdirectory after http://localhost, so if your userdirectory on mac is daniel, you need to type <strong>http://localhost/~daniel</strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;t=PHP+and+MySQL+Basics%3A+Software+Needed" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;title=PHP+and+MySQL+Basics%3A+Software+Needed" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;title=PHP+and+MySQL+Basics%3A+Software+Needed" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;title=PHP+and+MySQL+Basics%3A+Software+Needed&amp;srcUrl=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;srcTitle=PHP+and+MySQL+Basics%3A+Software+Needed&amp;snippet=Now%20that%20you%20have%20a%20little%20background%20about%20PHP%2C%20let%27s%20now%20talk%20about%20the%20tools%2Fsoftware%20that%20you%20need%20in%20this%20lesson.%0A%0AWHAT%20DO%20YOU%20NEED...%0A%0A%09A%20Web%20Server%20-%20Apache%20%2F%20IIS%20will%20work%20too..%0A%0A%09PHP%20-%20so%20that%20our%20web%20server%20can%20understand%20our%20php%20file.%0A%0A%09Database%20-%20MySQL%0A%09Text%20Editor%20-%20Notepad%2C%20Dreamweaver" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;title=PHP+and+MySQL+Basics%3A+Software+Needed" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;title=PHP+and+MySQL+Basics%3A+Software+Needed" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/php-and-mysql-basics-software-needed.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+and+MySQL+Basics%3A+Software+Needed+-+http://b2l.me/ah93dv&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/php-and-mysql-basics-software-needed.php&amp;submitHeadline=PHP+and+MySQL+Basics%3A+Software+Needed&amp;submitSummary=Now%20that%20you%20have%20a%20little%20background%20about%20PHP%2C%20let%27s%20now%20talk%20about%20the%20tools%2Fsoftware%20that%20you%20need%20in%20this%20lesson.%0A%0AWHAT%20DO%20YOU%20NEED...%0A%0A%09A%20Web%20Server%20-%20Apache%20%2F%20IIS%20will%20work%20too..%0A%0A%09PHP%20-%20so%20that%20our%20web%20server%20can%20understand%20our%20php%20file.%0A%0A%09Database%20-%20MySQL%0A%09Text%20Editor%20-%20Notepad%2C%20Dreamweaver&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fphp-and-mysql-basics-software-needed.php&amp;t=PHP+and+MySQL+Basics%3A+Software+Needed" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=PHP+and+MySQL+Basics%3A+Software+Needed&amp;body=Link: http://danieldumas.com/php-and-mysql-basics-software-needed.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Now%20that%20you%20have%20a%20little%20background%20about%20PHP%2C%20let%27s%20now%20talk%20about%20the%20tools%2Fsoftware%20that%20you%20need%20in%20this%20lesson.%0A%0AWHAT%20DO%20YOU%20NEED...%0A%0A%09A%20Web%20Server%20-%20Apache%20%2F%20IIS%20will%20work%20too..%0A%0A%09PHP%20-%20so%20that%20our%20web%20server%20can%20understand%20our%20php%20file.%0A%0A%09Database%20-%20MySQL%0A%09Text%20Editor%20-%20Notepad%2C%20Dreamweaver" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/php-and-mysql-basics-software-needed.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL Basics: Introduction</title>
		<link>http://danieldumas.com/php-and-mysql-basics-introduction.php</link>
		<comments>http://danieldumas.com/php-and-mysql-basics-introduction.php#comments</comments>
		<pubDate>Sun, 21 Sep 2008 00:13:17 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=151</guid>
		<description><![CDATA[Hello this is the first part of the PHP and MySQL basic tutorial here in my blog. if you have any questions or other concerns feel free to leave a comment or contact me through my contact page. okey before we go deep in learning the PHP langauge. lets first define what php is.. WHAT [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Hello this is the first part of the PHP and MySQL basic tutorial here in my blog. if you have any questions or other concerns feel free to leave a comment or contact me through my contact page. okey before we go deep in learning the PHP langauge. lets first define what php is..</p>
<p style="text-align: justify;"><span id="more-151"></span></p>
<p style="text-align: justify;"><span style="color: #99cc00;"><strong>WHAT IS PHP?</strong></span></p>
<ul>
<li><strong>It is a server-side, scripting language.</strong><span style="color: #ff0000;"><em> </em><em> <span style="color: #ff9900;">- it does&#8217;nt need a compiler  to run or it does&#8217;nt need to be compiled. Another example of scripting language is Javascript. but unlike Javascript, PHP runs on the web server. Javasript runs on the users browser.</span></em> </span></li>
</ul>
<ul>
<li><strong>PHP&#8217;s syntax is very similar to C, Perl and Java. </strong><strong></strong></li>
<li><strong>It is an HTML embedded scripting language. <span style="color: #ff9900;"><em>- </em></span></strong><span style="color: #ff9900;"><em>it is used to output html in the browser. you need to change the extension file of your html to .php to tell the server process it as php.</em></span></li>
<li><span style="color: #000000;"><strong>It can make your page more dynamic. </strong><strong></strong> </span></li>
</ul>
<p><span style="color: #99cc00;"><strong>WHY USE PHP?</strong></span></p>
<ul>
<li><strong>It is open source </strong><span style="color: #ff9900;"><em>- <span>it is free</span></em></span><span style="color: #ff9900;"> <em>to download and free to use.</em></span></li>
</ul>
<ul>
<li><strong>It is cross platform </strong><span style="color: #ff9900;"><em>- <span>it can run on windows, mac or linux server, and all browsers.</span></em></span></li>
</ul>
<ul>
<li><span style="color: #000000;"><strong>Most opensource web applications are powered by PHP <span style="color: #ff9900;">- </span></strong></span><span style="color: #ff9900;"><em>WordPress, Joomla, Mambo, PhpBB, etc. by learning php you may be able to work with these and also customize it.</em></span></li>
</ul>
<p><span style="color: #ff0000;"><em> </em></span></p>
<ul>
<li><span style="color: #000000;"><strong>Almost 20Million webpages in the world uses PHP </strong><em>- <span style="color: #ff9900;">j</span><span style="color: #ff9900;">ust like google, friendster, multiply, facebook, etc..</span></em></span></li>
</ul>
<p><span style="color: #000000;"><em><span style="color: #ff0000;"> </span></em></span></p>
<ul>
<li><span style="color: #000000;"><strong>It is powerful, robust and scalable </strong></span><span style="color: #ff9900;"><em>- <span>it can deliver excellent performance even if your site is a high traffic site.</span></em></span></li>
</ul>
<p><span style="color: #000000;"><em><span style="color: #ff0000;"> </span></em></span></p>
<ul>
<li><span style="color: #ff0000;"><strong><span style="color: #000000;">it has built in database support</span> </strong></span><span style="color: #ff9900;">-<em>you can create database driven web applications immediately.</em></span></li>
</ul>
<p><span style="color: #ff0000;"><em> </em></span></p>
<ul>
<li><span style="color: #ff0000;"><strong><span style="color: #000000;">Anything you can do with a regular programming laguages, you can do with PHP</span> </strong></span><span style="color: #ff9900;"><em>- you can perform calculations, validate user inputs, process forms, read and write files etc&#8230;</em></span></li>
</ul>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;t=PHP+and+MySQL+Basics%3A+Introduction" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;feed=comments-rss2" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;title=PHP+and+MySQL+Basics%3A+Introduction" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;title=PHP+and+MySQL+Basics%3A+Introduction" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;title=PHP+and+MySQL+Basics%3A+Introduction&amp;srcUrl=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;srcTitle=PHP+and+MySQL+Basics%3A+Introduction&amp;snippet=Hello%20this%20is%20the%20first%20part%20of%20the%20PHP%20and%20MySQL%20basic%20tutorial%20here%20in%20my%20blog.%20if%20you%20have%20any%20questions%20or%20other%20concerns%20feel%20free%20to%20leave%20a%20comment%20or%20contact%20me%20through%20my%20contact%20page.%20okey%20before%20we%20go%20deep%20in%20learning%20the%20PHP%20langauge.%20lets%20first%20define%20what%20php%20is..%0A%0AWHAT%20IS%20PHP%3F%0A%0A%0A%09It%20i" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;title=PHP+and+MySQL+Basics%3A+Introduction" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;title=PHP+and+MySQL+Basics%3A+Introduction" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://danieldumas.com/php-and-mysql-basics-introduction.php" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+and+MySQL+Basics%3A+Introduction+-+http://b2l.me/ah7g5g&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://danieldumas.com/php-and-mysql-basics-introduction.php&amp;submitHeadline=PHP+and+MySQL+Basics%3A+Introduction&amp;submitSummary=Hello%20this%20is%20the%20first%20part%20of%20the%20PHP%20and%20MySQL%20basic%20tutorial%20here%20in%20my%20blog.%20if%20you%20have%20any%20questions%20or%20other%20concerns%20feel%20free%20to%20leave%20a%20comment%20or%20contact%20me%20through%20my%20contact%20page.%20okey%20before%20we%20go%20deep%20in%20learning%20the%20PHP%20langauge.%20lets%20first%20define%20what%20php%20is..%0A%0AWHAT%20IS%20PHP%3F%0A%0A%0A%09It%20i&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fdanieldumas.com%2Fphp-and-mysql-basics-introduction.php&amp;t=PHP+and+MySQL+Basics%3A+Introduction" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=PHP+and+MySQL+Basics%3A+Introduction&amp;body=Link: http://danieldumas.com/php-and-mysql-basics-introduction.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20this%20is%20the%20first%20part%20of%20the%20PHP%20and%20MySQL%20basic%20tutorial%20here%20in%20my%20blog.%20if%20you%20have%20any%20questions%20or%20other%20concerns%20feel%20free%20to%20leave%20a%20comment%20or%20contact%20me%20through%20my%20contact%20page.%20okey%20before%20we%20go%20deep%20in%20learning%20the%20PHP%20langauge.%20lets%20first%20define%20what%20php%20is..%0A%0AWHAT%20IS%20PHP%3F%0A%0A%0A%09It%20i" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://danieldumas.com/php-and-mysql-basics-introduction.php/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

