<?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>Web Development</title>
	<atom:link href="http://webdevelop.nitamihai.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdevelop.nitamihai.com</link>
	<description></description>
	<lastBuildDate>Fri, 24 Apr 2009 23:29:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>IE 8 CSS Hack</title>
		<link>http://webdevelop.nitamihai.com/ie8-css-hack/</link>
		<comments>http://webdevelop.nitamihai.com/ie8-css-hack/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 22:33:53 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://webdevelop.nitamihai.com/?p=33</guid>
		<description><![CDATA[In some cases, IE8 still can’t render CSS correctly. This is the magic trick to target only IE 8 . .selector { property /*\**/: value\9 } ex: .myText { color /*\**/: #cc0000\9 }]]></description>
		<wfw:commentRss>http://webdevelop.nitamihai.com/ie8-css-hack/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Modify Foreign Key</title>
		<link>http://webdevelop.nitamihai.com/modify-foreign-key/</link>
		<comments>http://webdevelop.nitamihai.com/modify-foreign-key/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 07:37:34 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[foreign keys]]></category>

		<guid isPermaLink="false">http://webdevelop.nitamihai.com/?p=30</guid>
		<description><![CDATA[To modify a Foreign Key in MySQL follow this steps : 1) Show table to see what is the name of Foreign Key we want to delete SHOW CREATE TABLE table 2) Delete the Foreign Key ALTER TABLE table DROP FOREIGN KEY table_ibfk_x 3) Create the new Foreign Key ALTER TABLE table ADD CONSTRAINT `table_ibfk_x` [...]]]></description>
		<wfw:commentRss>http://webdevelop.nitamihai.com/modify-foreign-key/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>phpMyAdmin</title>
		<link>http://webdevelop.nitamihai.com/phpmyadmin/</link>
		<comments>http://webdevelop.nitamihai.com/phpmyadmin/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 08:39:33 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://webdevelop.nitamihai.com/?p=17</guid>
		<description><![CDATA[In config file ( config.inc.php) you can&#8217;t set $cfg['Servers'][$i]['only_db'] = &#8216;my_db&#8216; . It will return NO DATABASES FOUND $cfg['Servers'][$i]['only_db'] If set to a (an array of) database name(s), only this (these) database(s) will be shown to the user. Since phpMyAdmin 2.2.1, this/these database(s) name(s) may contain MySQL wildcards characters (&#8220;_&#8221; and &#8220;%&#8221;). If you want [...]]]></description>
		<wfw:commentRss>http://webdevelop.nitamihai.com/phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing Dotted Links</title>
		<link>http://webdevelop.nitamihai.com/removing-dotted-links/</link>
		<comments>http://webdevelop.nitamihai.com/removing-dotted-links/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 02:24:15 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://webdevelop.nitamihai.com/?p=7</guid>
		<description><![CDATA[If you don&#8217;t like the dotted outline that appears around every link (see image bellow) you can use  this CSS trick : outline: none; Example : a { outline: none; } Later edit : You must add the pseudo class of :focus to work on all IE versions. (thanks to Eric Hoffman )]]></description>
		<wfw:commentRss>http://webdevelop.nitamihai.com/removing-dotted-links/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Design for Browser Size Not Screen Size</title>
		<link>http://webdevelop.nitamihai.com/design-for-browser-size-not-screen-size/</link>
		<comments>http://webdevelop.nitamihai.com/design-for-browser-size-not-screen-size/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 02:03:05 +0000</pubDate>
		<dc:creator>mihai</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[page layout]]></category>

		<guid isPermaLink="false">http://webdevelop.nitamihai.com/?p=3</guid>
		<description><![CDATA[People working professionally with web know the difference between screen size and browser content area, but to make it clear I wanted to illustrate that screen size is irrelevant in comparison to other more important metrics. You can find more information about screen resolution and page layout here]]></description>
		<wfw:commentRss>http://webdevelop.nitamihai.com/design-for-browser-size-not-screen-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
