<?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/category/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>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>
		<item>
		<title>PHP and MySQL Basics Tutorial</title>
		<link>http://danieldumas.com/php-and-mysql-basics-tutorial.php</link>
		<comments>http://danieldumas.com/php-and-mysql-basics-tutorial.php#comments</comments>
		<pubDate>Sat, 20 Sep 2008 07:31:22 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://danieldumas.com/?p=135</guid>
		<description><![CDATA[Hello guys today i am going to start my basic PHP tutorial. i will give examples in every part of this tutorial so that you can follow with me easily. my aim in this tutorial is to share my knowledge in PHP to anyone specially to my blog readers who wants to learn the basics [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_136" class="wp-caption alignleft" style="width: 164px"><a href="http://danieldumas.com/wp-content/uploads/2008/09/phphello.jpg"><img class="size-medium wp-image-136" title="PHP" src="http://danieldumas.com/wp-content/uploads/2008/09/phphello.jpg" alt="PHP Basics" width="154" height="58" /></a><p class="wp-caption-text"> </p></div>
<p style="text-align: justify;">Hello guys today i am going to start my basic PHP tutorial. i will give examples in every part of this tutorial so that you can follow with me easily. my aim in this tutorial is to share my knowledge in PHP to anyone specially to my blog readers who wants to learn the basics of PHP. i will focus on the very basic of PHP so that anyone can follow along even if you dont have any background in  PHP or any other programming language <span id="more-135"></span>before. Anyone is welcome to comment or add anything in the tutorial specially those php professional so that we can help other people dont worry i will put your name in the contributors list <em>hehe </em>thanks in advance.</p>
<p style="text-align: justify;">Here&#8217;s the list of topics / contents included in the tutorial.</p>
<ul>
<li>Introduction</li>
<li>Software Needed and Installations</li>
<li>PHP scripting basics</li>
<li>Data Types</li>
<li>Conditionals and Looping</li>
<li>Arrays and Functions</li>
<li>Working with MySQL</li>
<li>Working With Sessions and more&#8230;</li>
</ul>
<p>I will update and make a separate page of all the links to the tutorial everytime i post so that you can check it out lesson by lesson or chapter by chapter. thanks.</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-tutorial.php&amp;t=PHP+and+MySQL+Basics+Tutorial" 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-tutorial.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-tutorial.php&amp;title=PHP+and+MySQL+Basics+Tutorial" 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-tutorial.php&amp;title=PHP+and+MySQL+Basics+Tutorial" 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-tutorial.php&amp;title=PHP+and+MySQL+Basics+Tutorial&amp;srcUrl=http://danieldumas.com/php-and-mysql-basics-tutorial.php&amp;srcTitle=PHP+and+MySQL+Basics+Tutorial&amp;snippet=%0AHello%20guys%20today%20i%20am%20going%20to%20start%20my%20basic%20PHP%20tutorial.%20i%20will%20give%20examples%20in%20every%20part%20of%20this%20tutorial%20so%20that%20you%20can%20follow%20with%20me%20easily.%20my%20aim%20in%20this%20tutorial%20is%20to%20share%20my%20knowledge%20in%20PHP%20to%20anyone%20specially%20to%20my%20blog%20readers%20who%20wants%20to%20learn%20the%20basics%20of%20PHP.%20i%20will%20focus%20on" 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-tutorial.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-tutorial.php&amp;title=PHP+and+MySQL+Basics+Tutorial" 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-tutorial.php&amp;title=PHP+and+MySQL+Basics+Tutorial" 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-tutorial.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+Tutorial+-+http://b2l.me/ah6sc9&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-tutorial.php&amp;submitHeadline=PHP+and+MySQL+Basics+Tutorial&amp;submitSummary=%0AHello%20guys%20today%20i%20am%20going%20to%20start%20my%20basic%20PHP%20tutorial.%20i%20will%20give%20examples%20in%20every%20part%20of%20this%20tutorial%20so%20that%20you%20can%20follow%20with%20me%20easily.%20my%20aim%20in%20this%20tutorial%20is%20to%20share%20my%20knowledge%20in%20PHP%20to%20anyone%20specially%20to%20my%20blog%20readers%20who%20wants%20to%20learn%20the%20basics%20of%20PHP.%20i%20will%20focus%20on&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-tutorial.php&amp;t=PHP+and+MySQL+Basics+Tutorial" 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+Tutorial&amp;body=Link: http://danieldumas.com/php-and-mysql-basics-tutorial.php (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0AHello%20guys%20today%20i%20am%20going%20to%20start%20my%20basic%20PHP%20tutorial.%20i%20will%20give%20examples%20in%20every%20part%20of%20this%20tutorial%20so%20that%20you%20can%20follow%20with%20me%20easily.%20my%20aim%20in%20this%20tutorial%20is%20to%20share%20my%20knowledge%20in%20PHP%20to%20anyone%20specially%20to%20my%20blog%20readers%20who%20wants%20to%20learn%20the%20basics%20of%20PHP.%20i%20will%20focus%20on" 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-tutorial.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

