<?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>Aleš Blog</title>
	<atom:link href="http://ales.efadesigner.cz/feed/" rel="self" type="application/rss+xml" />
	<link>http://ales.efadesigner.cz</link>
	<description>Nevíte si rady? zkuste to tady</description>
	<lastBuildDate>Tue, 24 Apr 2012 20:15:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Práce s řetězci(string) pomocí funkcí</title>
		<link>http://ales.efadesigner.cz/2012/04/24/prace-s-retezcistring-pomoci-funkci/</link>
		<comments>http://ales.efadesigner.cz/2012/04/24/prace-s-retezcistring-pomoci-funkci/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 19:06:02 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=116</guid>
		<description><![CDATA[addslashes() - opatří řetězci lomítky příklad: $a = &#8216;Jmenuješ se O&#8220;reilly?&#8217;; echo addslashes($a); // Vypíše: Jmenuješ se O\&#8220;reilly? chop() - odstraní mezery na konci řetězce příklad: echo  chop (&#8216;ahoj &#8216;).&#8217;pane&#8217;; //vypíše: ahojpane chr(ASCII) &#8211; zapíše řetězec podle ASCII příklad: echo chr(97); //vypíše: a  chunk_split(řetězec, délka, oddělovač) &#8211; rozdělí řetězec na několik částí a oddělí je příklad: echo chunk_split(&#8217;55882266&#8242;,&#8217;2&#8242;,&#8217;-&#8217;); //vypíše: [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/04/24/prace-s-retezcistring-pomoci-funkci/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funkce  str_replace()</title>
		<link>http://ales.efadesigner.cz/2012/04/24/funkce-str_replace/</link>
		<comments>http://ales.efadesigner.cz/2012/04/24/funkce-str_replace/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 09:59:34 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=112</guid>
		<description><![CDATA[Tato funkce nám umožní nahradit všechny výskyty jednoho řetězce dalším řetězcem. Lze užít například na zobrazení smajlíků do návštěvní knihy. str_replace  obsahuje 3 parametry 1. co nahradit 2. čím to nahradit 3. v čem to nahradit. První i druhý parametr mohou být také řetězce. např:   $text=&#8216;Dnes je den.&#8217;; echo str_replace(&#8216;den&#8217;,&#8216;pondeli&#8217;,$text) ;  //slovo Pondělí nám [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/04/24/funkce-str_replace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mysql join</title>
		<link>http://ales.efadesigner.cz/2012/04/22/mysql-join/</link>
		<comments>http://ales.efadesigner.cz/2012/04/22/mysql-join/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 18:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=108</guid>
		<description><![CDATA[Dnes si ukážeme jednoduché spojení tabulky Vememe dvě tabulky s názvem lide a vek tabulka lidé sloupce id , jmeno ,prijmeni tabulka vek sloupce id,id_lide,vek select l.jmeno as jmeno, l.prijmeni as prijmeni, v.vek as vek from lide as l join vek as v on(l.id=v.id_lide) where o.vek = 25 V tomto případě jsme  si spojili tyto [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/04/22/mysql-join/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QT Telnet</title>
		<link>http://ales.efadesigner.cz/2012/04/19/qt-telnet/</link>
		<comments>http://ales.efadesigner.cz/2012/04/19/qt-telnet/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 13:49:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=97</guid>
		<description><![CDATA[Pro připojení na telnet pomocí QT4 jsem použil QTcpSocket Následně na to jsem si vytvořil funkci na připojení #include &#60;QString&#62; #include &#60;QDebug&#62; #include &#60;QtNetwork/QFtp&#62; #include &#60;QtNetwork/QTcpSocket&#62; #include &#60;mainwindow.h&#62; #include &#60;QTcpSocket&#62; QTcpSocket *tcpSocket; void telnet_connect() { //definice názvu funkce tcpSocket = new QTcpSocket(); //nadefinování promenné   tcpSocket-&#62;connectToHost(&#8222;ip adresa&#8220;, &#8222;císlo portu&#8220;); //zde si nadefinuji ip adresu a port na [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/04/19/qt-telnet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Funkce Explode a Implode</title>
		<link>http://ales.efadesigner.cz/2012/04/19/95/</link>
		<comments>http://ales.efadesigner.cz/2012/04/19/95/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 13:45:38 +0000</pubDate>
		<dc:creator>dan</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=95</guid>
		<description><![CDATA[Explode je zajimavá funkce pomocí které můžeme rozdělit řetězec na pole. Tato funkce má 2 parametry Prvním parametrem této funkce je oddělovat, např. (:), a druhým parametrem je samotná část řetěžce,např. ($retezec).  Pokud tedy máme $retezec, která obsahuje více parametrů můžeme jí rozdělit pomocí této funkce. Příklad: &#60;?php $retezec=&#8222;Banán:Mrkev:Okurka:Květák:Pažitka&#8220;; $vypis=explode(&#8222;:&#8220;,$retezec) ; print_r ($vypis);    //pro vypsání [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/04/19/95/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zpracování formuláře pomocí php</title>
		<link>http://ales.efadesigner.cz/2012/04/03/zpracovani-formulare-pomoci-php/</link>
		<comments>http://ales.efadesigner.cz/2012/04/03/zpracovani-formulare-pomoci-php/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 10:15:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=90</guid>
		<description><![CDATA[Dnes si ukážeme jak na zpracování forumalě pomocí php Nejdříve si musíme vytvořit jednoduchý formulař v html &#60;form method=&#8220;post&#8220; action=&#8220;#&#8220;&#62; &#60;input type=&#8220;text&#8220; name=&#8220;nazev&#8220;&#62; &#60;input type=&#8220;submit&#8220; value=&#8220;Odeslat&#8220;&#62; &#60;/form&#62;  Jednoduchý forumulář v html máme již pripraven a můžeme se pustit do jeho zpracování. &#160; Formulář se nám bude odesílat formou post (method=&#8220;post&#8220;) sám na sebe(action=&#8220;#&#8220;) následně na [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/04/03/zpracovani-formulare-pomoci-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Funkce v PHP</title>
		<link>http://ales.efadesigner.cz/2012/03/04/funkce-v-php/</link>
		<comments>http://ales.efadesigner.cz/2012/03/04/funkce-v-php/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 10:07:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=81</guid>
		<description><![CDATA[Dnes si ukážem použití funkcí v php. Základním prvkem když chceme si deklarovat a použít funkci je to abychom si ji nadeklarovali nad kodem kde ji chceme používat. Deklarace funkce se uvání slovem function  function nase_funkce(){ echo &#8222;Ahoj já jsem první funkce&#8220;; } &#160; nase_funkce();  zde námy nadeklarovaná a použitá funkce nám vypíš větu &#8220; [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/03/04/funkce-v-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error: undefined reference to `vtable for ClassPrihlasit&#8217;</title>
		<link>http://ales.efadesigner.cz/2012/01/08/error-undefined-reference-to-vtable-for-classprihlasit/</link>
		<comments>http://ales.efadesigner.cz/2012/01/08/error-undefined-reference-to-vtable-for-classprihlasit/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 13:27:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=78</guid>
		<description><![CDATA[Dnes si povímě něco o této chybě, na kterou jsem narazil během vytváření aplikace v QT Creatoru je na to naprosto jednoduchý recept musí se nainsludovat soubor .moc Nejdříve jsem to dal nahoru do zdrojače kde máme klasický includy, ale začlo to hlásit ještě více chyb než bylo zdrávo a tak jsem se chvilku po [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/01/08/error-undefined-reference-to-vtable-for-classprihlasit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c++ mysql pomocí Qt4</title>
		<link>http://ales.efadesigner.cz/2012/01/08/c-mysql-pomoci-qt4/</link>
		<comments>http://ales.efadesigner.cz/2012/01/08/c-mysql-pomoci-qt4/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 12:02:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=73</guid>
		<description><![CDATA[Dnes si ukážem jak se spojit z c++ s mysql pomocí QT knihoven #include &#60;iostream&#62; #include &#60;QApplication&#62; #include &#60;QLabel&#62; #include &#60;QString&#62; #include &#60;QLineEdit&#62; #include &#60;QPushButton&#62; #include &#60;QObject&#62; #include &#60;QtSql/QSqlDatabase&#62; #include &#60;QtSql/QSqlQuery&#62; #include &#60;QtSql/QSqlRecord&#62; &#160; int main(int argc, char *argv[]) { QApplication app(argc, argv); QWidget *window = new QWidget(); //sirka výska window-&#62;resize(200, 110); QSqlDatabase db = [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/01/08/c-mysql-pomoci-qt4/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Perl proměnné</title>
		<link>http://ales.efadesigner.cz/2012/01/07/perl-promenne/</link>
		<comments>http://ales.efadesigner.cz/2012/01/07/perl-promenne/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 17:41:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://ales.efadesigner.cz/?p=62</guid>
		<description><![CDATA[Dnes si ukážem zápis a definici proměnných v jazyce perl. &#160; 1. Globální proměnné our $nazev=&#8220;test&#8220;; our nám definuje proměnou $nazev jako globální proměnou, tím pádem ji můžem použít po celém dokumentu. Samozřejmě ji mužem i behem probíhání scriptu měnit. 2.Lokální my $nazev=&#8220;test&#8220;; my nám definuje proměnou $nazev jako lokální věc a nemužem ji vynášet [...]]]></description>
		<wfw:commentRss>http://ales.efadesigner.cz/2012/01/07/perl-promenne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

