<?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>Urban Cetinski &#187; to</title>
	<atom:link href="http://urban.spletno-mesto.com/tag/to/feed/" rel="self" type="application/rss+xml" />
	<link>http://urban.spletno-mesto.com</link>
	<description>PHP, MySQL, jQuery, CSS, Zend Framework, Urban Cetinski</description>
	<lastBuildDate>Sat, 12 Mar 2011 09:57:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How to change the collation for all tables in a MySQL database to UTF-8?</title>
		<link>http://urban.spletno-mesto.com/how-to-change-the-collation-for-all-tables-in-a-mysql-database-to-utf-8/</link>
		<comments>http://urban.spletno-mesto.com/how-to-change-the-collation-for-all-tables-in-a-mysql-database-to-utf-8/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:20:30 +0000</pubDate>
		<dc:creator>Urban</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[UTF-8]]></category>

		<guid isPermaLink="false">http://urban.spletno-mesto.com/?p=851</guid>
		<description><![CDATA[&#60;?php $db = mysql_connect(&#34;localhost&#34;, &#34;username&#34;, &#34;pass&#34;); if(!$db) echo &#34;Cannot connect to the database - incorrect details&#34;; mysql_select_db('myuser_mydbname'); $result=mysql_query('show tables'); while($tables = mysql_fetch_array($result)) { foreach ($tables as $key =&#62; $value) { mysql_query(&#34;ALTER TABLE $value COLLATE utf8_slovenian_ci&#34;); }} echo &#34;The collation of your database has been successfully changed!&#34;; ?&#62;]]></description>
			<content:encoded><![CDATA[<pre class="brush: php;">
&lt;?php
$db = mysql_connect(&quot;localhost&quot;, &quot;username&quot;, &quot;pass&quot;);
if(!$db) echo &quot;Cannot connect to the database - incorrect details&quot;;
mysql_select_db('myuser_mydbname'); $result=mysql_query('show tables');
while($tables = mysql_fetch_array($result)) {
foreach ($tables as $key =&gt; $value) {
mysql_query(&quot;ALTER TABLE $value COLLATE utf8_slovenian_ci&quot;);
}}
echo &quot;The collation of your database has been successfully changed!&quot;;
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://urban.spletno-mesto.com/how-to-change-the-collation-for-all-tables-in-a-mysql-database-to-utf-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install LaTeX on Ubuntu</title>
		<link>http://urban.spletno-mesto.com/how-to-install-latex-on-ubuntu/</link>
		<comments>http://urban.spletno-mesto.com/how-to-install-latex-on-ubuntu/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 20:48:00 +0000</pubDate>
		<dc:creator>Urban</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://urban.spletno-mesto.com/?p=559</guid>
		<description><![CDATA[V terminal vnesite naslednje ukaze: sudo apt-get install tetex-base sudo apt-get install tetex-bin sudo apt-get install tetex-extra sudo apt-get install latex-xft-fonts sudo apt-get install latex-beamer sudo apt-get install kile Po uspešni namestitvi vseh paketov vam bo Latex deloval.]]></description>
			<content:encoded><![CDATA[<p>V terminal vnesite naslednje ukaze:</p>
<p>sudo apt-get <a href="http://urban.spletno-mesto.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> tetex-base<br />
sudo apt-get <a href="http://urban.spletno-mesto.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> tetex-bin<br />
sudo apt-get <a href="http://urban.spletno-mesto.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> tetex-extra<br />
sudo apt-get <a href="http://urban.spletno-mesto.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> <a href="http://urban.spletno-mesto.com/tag/latex/" class="st_tag internal_tag" rel="tag" title="Posts tagged with latex">latex</a>-xft-fonts<br />
sudo apt-get <a href="http://urban.spletno-mesto.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> <a href="http://urban.spletno-mesto.com/tag/latex/" class="st_tag internal_tag" rel="tag" title="Posts tagged with latex">latex</a>-beamer<br />
sudo apt-get <a href="http://urban.spletno-mesto.com/tag/install/" class="st_tag internal_tag" rel="tag" title="Posts tagged with install">install</a> kile</p>
<p>Po uspešni namestitvi vseh paketov vam bo <a href="http://urban.spletno-mesto.com/tag/latex/" class="st_tag internal_tag" rel="tag" title="Posts tagged with latex">Latex</a> deloval.</p>
]]></content:encoded>
			<wfw:commentRss>http://urban.spletno-mesto.com/how-to-install-latex-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>slo trying to shuffle (video part 1-2-3-4)</title>
		<link>http://urban.spletno-mesto.com/slo-trying-to-shuffle-video-part-1-2-3-4/</link>
		<comments>http://urban.spletno-mesto.com/slo-trying-to-shuffle-video-part-1-2-3-4/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 12:42:10 +0000</pubDate>
		<dc:creator>Urban</dc:creator>
				<category><![CDATA[Zabava]]></category>
		<category><![CDATA[dance]]></category>
		<category><![CDATA[dancing]]></category>
		<category><![CDATA[girl]]></category>
		<category><![CDATA[jump]]></category>
		<category><![CDATA[jumping]]></category>
		<category><![CDATA[part]]></category>
		<category><![CDATA[shuffle]]></category>
		<category><![CDATA[slo]]></category>
		<category><![CDATA[spins]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[trying]]></category>

		<guid isPermaLink="false">http://urban.spletno-mesto.com/?p=431</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/2ira6Cpb9-c&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/2ira6Cpb9-c&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/bKJwqLQBLhE&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/bKJwqLQBLhE&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/X25PZZmF1pc&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/X25PZZmF1pc&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/L58fryGsiZA&amp;hl=en&amp;fs=1" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/L58fryGsiZA&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://urban.spletno-mesto.com/slo-trying-to-shuffle-video-part-1-2-3-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change xp start button text</title>
		<link>http://urban.spletno-mesto.com/how-to-change-xp-start-button-text/</link>
		<comments>http://urban.spletno-mesto.com/how-to-change-xp-start-button-text/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 06:08:54 +0000</pubDate>
		<dc:creator>Urban</dc:creator>
				<category><![CDATA[Računalništvo]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[ChangeXPStartButtonText]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[professional]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[tekst]]></category>
		<category><![CDATA[Text]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[wikihow]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://urban.spletno-mesto.com/?p=389</guid>
		<description><![CDATA[Change The Text On The Start Menu Button &#8211; The top video clips of the week are here Če se ne zanjdete dobro iz filmčka prilagam tukaj še en link kjer je natančno opisano do podrobnosti kaj morate klikati lepo po korakih. http://www.wintipz.com/XP/ChangeXPStartButtonText.htm]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.metacafe.com/fplayer/797383/change_the_text_on_the_start_menu_button.swf" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="400" height="345" src="http://www.metacafe.com/fplayer/797383/change_the_text_on_the_start_menu_button.swf" wmode="transparent"></embed></object><br />
<span style="font-size: xx-small;"><a href="http://www.metacafe.com/watch/797383/change_the_text_on_the_start_menu_button/">Change The Text On The Start Menu Button</a> &#8211; <a href="http://www.metacafe.com/">The top video clips of the week are here</a></span></p>
<p style="text-align: center;">
<p style="text-align: center;">Če se ne zanjdete dobro iz filmčka prilagam tukaj še en link kjer je natančno opisano do podrobnosti kaj morate klikati lepo po korakih.</p>
<p style="text-align: center;"><a title="http://www.wintipz.com/XP/ChangeXPStartButtonText.htm" href="http://www.wintipz.com/XP/ChangeXPStartButtonText.htm" target="_blank">http://www.wintipz.com/XP/ChangeXPStartButtonText.htm </a></p>
]]></content:encoded>
			<wfw:commentRss>http://urban.spletno-mesto.com/how-to-change-xp-start-button-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

