<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Michael's Blog</title>
	<atom:link href="http://michaeljj.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaeljj.wordpress.com</link>
	<description>Blogging about nothing and everything!</description>
	<lastBuildDate>Sat, 13 Jan 2007 11:49:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='michaeljj.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Michael's Blog</title>
		<link>http://michaeljj.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://michaeljj.wordpress.com/osd.xml" title="Michael&#039;s Blog" />
	<atom:link rel='hub' href='http://michaeljj.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Basic tips for coonect to mysql with php</title>
		<link>http://michaeljj.wordpress.com/2007/01/13/basic-tips-for-coonect-to-mysql-with-php/</link>
		<comments>http://michaeljj.wordpress.com/2007/01/13/basic-tips-for-coonect-to-mysql-with-php/#comments</comments>
		<pubDate>Sat, 13 Jan 2007 11:49:24 +0000</pubDate>
		<dc:creator>michaeljj</dc:creator>
				<category><![CDATA[IT and Programming]]></category>

		<guid isPermaLink="false">http://michaeljj.wordpress.com/2007/01/13/basic-tips-for-coonect-to-mysql-with-php/</guid>
		<description><![CDATA[&#60;?php mysql_connect(&#8220;localhost&#8221;, &#8220;admin&#8221;, &#8220;1admin&#8221;) or die(mysql_error()); echo &#8220;Connected to MySQL&#60;br /&#62;&#8221;; ?&#62; If you load the above PHP script to your webserver and everything works properly, then you should see &#8220;Connected to MySQL&#8221; displayed when you view the .php page. The mysql_connect function takes three arguments. Server, username, and password. In our example above these [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaeljj.wordpress.com&amp;blog=543622&amp;post=6&amp;subd=michaeljj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&lt;?php<br />
mysql_connect(&#8220;localhost&#8221;, &#8220;admin&#8221;, &#8220;1admin&#8221;) or die(mysql_error());<br />
echo &#8220;Connected to MySQL&lt;br /&gt;&#8221;;<br />
?&gt;</p>
<p>If you load the above PHP script to your webserver and everything works properly, then you should see &#8220;Connected to MySQL&#8221; displayed when you view the .php page.</p>
<p>The mysql_connect function takes three arguments. Server, username, and password. In our example above these arguments were:</p>
<ul>
<li><strong>Server</strong> &#8211; localhost</li>
<li><strong>Username</strong> &#8211; admin</li>
<li><strong>Password</strong> &#8211; admin</li>
</ul>
<p>Now let&#8217;s say you want to access a specific database you can use:</p>
<p>After establishing a MySQL connection with the code above, you then need to choose which database you will be using with this connection. This is done with the <em>mysql_select_db</em> function.</p>
<p>&lt;?php<br />
mysql_connect(&#8220;localhost&#8221;, &#8220;admin&#8221;, &#8220;1admin&#8221;) or die(mysql_error());<br />
echo &#8220;Connected to MySQL&lt;br /&gt;&#8221;;<br />
<font color="#ff0000">mysql_select_db(&#8220;test&#8221;)</font> or die(mysql_error());<br />
echo &#8220;Connected to Database&#8221;;<br />
?&gt;<br />
the display message should be:</p>
<p>Connected to MySQL<br />
Connected to Database</p>
<p>this is a quick little tutorial on how to conect to a MySql databse, the next tutorila will elaborate on how to create tables in that database and all the diffrent operations that you can perform.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/michaeljj.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/michaeljj.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/michaeljj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/michaeljj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/michaeljj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/michaeljj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/michaeljj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/michaeljj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/michaeljj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/michaeljj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/michaeljj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/michaeljj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/michaeljj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/michaeljj.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/michaeljj.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/michaeljj.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaeljj.wordpress.com&amp;blog=543622&amp;post=6&amp;subd=michaeljj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaeljj.wordpress.com/2007/01/13/basic-tips-for-coonect-to-mysql-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbc3a2499d817b6cad90a5ee902f5b42?s=96&#38;d=identicon" medium="image">
			<media:title type="html">michaeljj</media:title>
		</media:content>
	</item>
		<item>
		<title>Running a web server on your PC</title>
		<link>http://michaeljj.wordpress.com/2006/12/20/running-a-web-server-on-your-pc/</link>
		<comments>http://michaeljj.wordpress.com/2006/12/20/running-a-web-server-on-your-pc/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 15:06:50 +0000</pubDate>
		<dc:creator>michaeljj</dc:creator>
				<category><![CDATA[IT and Programming]]></category>

		<guid isPermaLink="false">http://michaeljj.wordpress.com/2006/12/20/running-a-web-server-on-your-pc/</guid>
		<description><![CDATA[If you are into IT or into web development, there are plenty of resources out there for you to learn and get the best out of your web development experience. I found a new software that lets you run Apache,MySql ,PHP and Perl all in one package. You can download the software and put it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaeljj.wordpress.com&amp;blog=543622&amp;post=5&amp;subd=michaeljj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are into IT or into web development, there are plenty of resources out there for you to learn and get the best out of your web development experience. I found a new software that lets you run Apache,MySql ,PHP and Perl all in one package. You can download the software and put it on your computer just as if you were downloading any messenger programs out there, yes! it&#8217;s that easy. The good part about the software is that it runs both on Windows and Linux and you also don&#8217;t even have to be online to write your codes and test it on your server.</p>
<p>Here is how it works:</p>
<p>Go to &#8212;&gt;&gt;  http://www.apachefriends.org/en/xampp.html</p>
<p>1- Download the <a href="http://www.apachefriends.org/download.php?xampp-win32-1.5.5.exe" target="sf">EXE (7-zip)</a> <a href="http://www.apachefriends.org/winxampp/md5/xampp-win32-1.5.5.exe.md5" target="sf">[MD5]</a> for faster download and to save you instalations pain!</p>
<p>2- Instalation</p>
<p><img src="http://images.apachefriends.org/images/1159.jpg" height="386" width="503" /><br />
3-After the installation is complete, you will find XAMPP under Start / Programs / XAMPP. You can use the XAMPP Control Panel to start/stop all server and also install/uninstall services.</p>
<p><img src="http://images.apachefriends.org/images/1161.jpg" height="352" width="446" /></p>
<p>4-   Test: After Apache starts, open the URL http://localhost or http://127.0.0.1 and examine all of the XAMPP examples and tools.</p>
<p>if you get apage similar to this you are into business!</p>
<p><img src="http://images.apachefriends.org/images/1213.jpg" height="419" width="540" /><br />
remember to access the XAMPP main page you can also type the IP of the localhost which is bye default 127.0.0.1 and that should take you to xampp.</p>
<p>Next week i&#8217;ll put a tutorial on how to upload files to your html folder and have a local website running on your computer. I&#8217;ll also put instructions on how to access your website outside of your network. So come back for some more free knowledge.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/michaeljj.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/michaeljj.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/michaeljj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/michaeljj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/michaeljj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/michaeljj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/michaeljj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/michaeljj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/michaeljj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/michaeljj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/michaeljj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/michaeljj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/michaeljj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/michaeljj.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/michaeljj.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/michaeljj.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaeljj.wordpress.com&amp;blog=543622&amp;post=5&amp;subd=michaeljj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaeljj.wordpress.com/2006/12/20/running-a-web-server-on-your-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbc3a2499d817b6cad90a5ee902f5b42?s=96&#38;d=identicon" medium="image">
			<media:title type="html">michaeljj</media:title>
		</media:content>

		<media:content url="http://images.apachefriends.org/images/1159.jpg" medium="image" />

		<media:content url="http://images.apachefriends.org/images/1161.jpg" medium="image" />

		<media:content url="http://images.apachefriends.org/images/1213.jpg" medium="image" />
	</item>
		<item>
		<title>My first Blog</title>
		<link>http://michaeljj.wordpress.com/2006/11/29/my-first-blog/</link>
		<comments>http://michaeljj.wordpress.com/2006/11/29/my-first-blog/#comments</comments>
		<pubDate>Wed, 29 Nov 2006 02:27:00 +0000</pubDate>
		<dc:creator>michaeljj</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://michaeljj.wordpress.com/2006/11/29/my-first-blog/</guid>
		<description><![CDATA[I registered for a blog from wordpress a while a go but i never actually had the time to put anything on there. Finally, i have decided to put some  stuff on it and hopefully have the courage to stop being lazy and continue the journey<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaeljj.wordpress.com&amp;blog=543622&amp;post=4&amp;subd=michaeljj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I registered for a blog from wordpress a while a go but i never actually had the time to put anything on there. Finally, i have decided to put some  stuff on it and hopefully have the courage to stop being lazy and continue the journey</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/michaeljj.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/michaeljj.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/michaeljj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/michaeljj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/michaeljj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/michaeljj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/michaeljj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/michaeljj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/michaeljj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/michaeljj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/michaeljj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/michaeljj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/michaeljj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/michaeljj.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/michaeljj.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/michaeljj.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaeljj.wordpress.com&amp;blog=543622&amp;post=4&amp;subd=michaeljj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaeljj.wordpress.com/2006/11/29/my-first-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dbc3a2499d817b6cad90a5ee902f5b42?s=96&#38;d=identicon" medium="image">
			<media:title type="html">michaeljj</media:title>
		</media:content>
	</item>
	</channel>
</rss>
