<?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>Php | SanalData | Yazılım ve Teknoloji Haberleri Sitesi</title>
	<atom:link href="https://www.sanaldata.com/k/php/feed" rel="self" type="application/rss+xml" />
	<link>https://www.sanaldata.com</link>
	<description>Yazılım ve teknoloji üzerine her türlü makaleye ulaşabileceğiniz site</description>
	<lastBuildDate>Wed, 04 Sep 2019 07:00:13 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.sanaldata.com/wp-content/uploads/2016/11/cropped-logo-32x32.png</url>
	<title>Php | SanalData | Yazılım ve Teknoloji Haberleri Sitesi</title>
	<link>https://www.sanaldata.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>WordPress&#8217;de Etiketleri Göstermek</title>
		<link>https://www.sanaldata.com/wordpressde-etiketleri-gostermek</link>
					<comments>https://www.sanaldata.com/wordpressde-etiketleri-gostermek#respond</comments>
		
		<dc:creator><![CDATA[Burak]]></dc:creator>
		<pubDate>Wed, 04 Sep 2019 07:00:13 +0000</pubDate>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.sanaldata.com/?p=805</guid>

					<description><![CDATA[<p>Merhaba arkadaşlar, WordPress&#8217;de etiketler göstermek için &#8220; &#60;?php endwhile; endif; ?&#62; &#8221; öncesinde yani döngüyü kapatmadan önce aşağıdaki kodu eklemeniz yeterlidir. [crayon-69eba7cff30c4864060881/]</p>
The post <a href="https://www.sanaldata.com/wordpressde-etiketleri-gostermek">WordPress’de Etiketleri Göstermek</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></description>
										<content:encoded><![CDATA[<p>Merhaba arkadaşlar,</p>
<p>WordPress&#8217;de etiketler göstermek için &#8220;<strong> &lt;?php endwhile; endif; ?&gt;</strong> &#8221; öncesinde yani döngüyü kapatmadan önce aşağıdaki kodu eklemeniz yeterlidir.</p><pre class="urvanov-syntax-highlighter-plain-tag">&lt;?php the_tags();?&gt;</pre><p></p>The post <a href="https://www.sanaldata.com/wordpressde-etiketleri-gostermek">WordPress’de Etiketleri Göstermek</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.sanaldata.com/wordpressde-etiketleri-gostermek/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Wordpres&#8217;de Eklentisiz Rastgele Yazı Gösterme</title>
		<link>https://www.sanaldata.com/wordpresde-eklentisiz-rastgele-yazi-gosterme</link>
					<comments>https://www.sanaldata.com/wordpresde-eklentisiz-rastgele-yazi-gosterme#respond</comments>
		
		<dc:creator><![CDATA[Burak]]></dc:creator>
		<pubDate>Tue, 06 Aug 2019 12:58:43 +0000</pubDate>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress random post]]></category>
		<guid isPermaLink="false">https://www.sanaldata.com/?p=763</guid>

					<description><![CDATA[<p>Merhaba arkadaşlar, WordPress&#8217;de eklentisiz rastgele yazı göstermek isterseniz aşağıdaki kod bloğunu kullanabilirsiniz. [crayon-69eba7cff368f727577453/]</p>
The post <a href="https://www.sanaldata.com/wordpresde-eklentisiz-rastgele-yazi-gosterme">Wordpres’de Eklentisiz Rastgele Yazı Gösterme</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></description>
										<content:encoded><![CDATA[<p>Merhaba arkadaşlar,</p>
<p>WordPress&#8217;de eklentisiz rastgele yazı göstermek isterseniz aşağıdaki kod bloğunu kullanabilirsiniz.</p><pre class="urvanov-syntax-highlighter-plain-tag">&lt;div&gt;
&lt;b&gt;Rastgele Yazılar&lt;/b&gt;
&lt;ul&gt;
&lt;?php
$args = array( 'numberposts' =&gt; 5, 'orderby' =&gt; 'rand', 'post_status' =&gt; 'publish', 'offset' =&gt; 1);
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?&gt;
&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endforeach; ?&gt;
&lt;/ul&gt;
&lt;/div&gt;</pre><p></p>The post <a href="https://www.sanaldata.com/wordpresde-eklentisiz-rastgele-yazi-gosterme">Wordpres’de Eklentisiz Rastgele Yazı Gösterme</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.sanaldata.com/wordpresde-eklentisiz-rastgele-yazi-gosterme/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress de sorgu ve yüklenme süresini göstermek</title>
		<link>https://www.sanaldata.com/wordpress-de-sorgu-ve-yuklenme-suresini-gostermek</link>
					<comments>https://www.sanaldata.com/wordpress-de-sorgu-ve-yuklenme-suresini-gostermek#respond</comments>
		
		<dc:creator><![CDATA[Burak]]></dc:creator>
		<pubDate>Sun, 30 Sep 2018 19:58:14 +0000</pubDate>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://www.sanaldata.com/?p=643</guid>

					<description><![CDATA[<p>Merhaba arkadaşlar worpdress&#8217;deki sorgu sayısını ve yüklenme süresini göstermek isterseniz aşağıdaki kodları kullanabilirsiniz. Sorgu sayısı için eklemeniz gereken kod [crayon-69eba7cff3851952511488/] Yüklenme süresi için eklemeniz gereken kod [crayon-69eba7cff3859136326998/] &#160;</p>
The post <a href="https://www.sanaldata.com/wordpress-de-sorgu-ve-yuklenme-suresini-gostermek">WordPress de sorgu ve yüklenme süresini göstermek</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></description>
										<content:encoded><![CDATA[<p>Merhaba arkadaşlar worpdress&#8217;deki sorgu sayısını ve yüklenme süresini göstermek isterseniz aşağıdaki kodları kullanabilirsiniz.</p>
<p><strong>Sorgu sayısı için eklemeniz gereken kod</strong></p><pre class="urvanov-syntax-highlighter-plain-tag">&lt;?php echo get_num_queries(); ?&gt;</pre><p><strong>Yüklenme süresi için eklemeniz gereken kod</strong></p><pre class="urvanov-syntax-highlighter-plain-tag">&lt;?php timer_stop(1); ?&gt;</pre><p>&nbsp;</p>The post <a href="https://www.sanaldata.com/wordpress-de-sorgu-ve-yuklenme-suresini-gostermek">WordPress de sorgu ve yüklenme süresini göstermek</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.sanaldata.com/wordpress-de-sorgu-ve-yuklenme-suresini-gostermek/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Php ile Mail Gönderme [ SMTP ]</title>
		<link>https://www.sanaldata.com/php-ile-mail-gonderme-smtp</link>
					<comments>https://www.sanaldata.com/php-ile-mail-gonderme-smtp#comments</comments>
		
		<dc:creator><![CDATA[Burak]]></dc:creator>
		<pubDate>Sat, 15 Sep 2018 11:50:22 +0000</pubDate>
				<category><![CDATA[Php]]></category>
		<guid isPermaLink="false">https://www.sanaldata.com/?p=622</guid>

					<description><![CDATA[<p>Merhaba arkadaşlar ekteki dosya ile sadece kullanıcı bilgileri kısmını değiştirerek php ile mail gönderebilirsiniz hemde smtp ayarlı olarak Buradan indirebilirsiniz. Bol kodlu günler herkese</p>
The post <a href="https://www.sanaldata.com/php-ile-mail-gonderme-smtp">Php ile Mail Gönderme [ SMTP ]</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></description>
										<content:encoded><![CDATA[<p>Merhaba arkadaşlar ekteki dosya ile sadece kullanıcı bilgileri kısmını değiştirerek php ile mail gönderebilirsiniz hemde smtp ayarlı olarak</p>
<p><strong><a href="https://www.sanaldata.com/wp-content/uploads/2018/09/php-ile_mail_gonderim.zip">Buradan</a> </strong>indirebilirsiniz.</p>
<p>Bol kodlu günler herkese</p>The post <a href="https://www.sanaldata.com/php-ile-mail-gonderme-smtp">Php ile Mail Gönderme [ SMTP ]</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.sanaldata.com/php-ile-mail-gonderme-smtp/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Php ile döviz kurlarını çekmek</title>
		<link>https://www.sanaldata.com/php-ile-doviz-kurlarini-cekmek</link>
					<comments>https://www.sanaldata.com/php-ile-doviz-kurlarini-cekmek#comments</comments>
		
		<dc:creator><![CDATA[Burak]]></dc:creator>
		<pubDate>Tue, 28 Mar 2017 10:47:04 +0000</pubDate>
				<category><![CDATA[Php]]></category>
		<guid isPermaLink="false">https://www.sanaldata.com/?p=339</guid>

					<description><![CDATA[<p>Merhaba arkadaşlar bugün ilk defa .net dışında php ile bir örnek kodu paylaşıcam, herşeyden önce php konusunda desteğini esirgemeyen &#8221; Tugay ÖCAL &#8221; teşekkür ederim kendisine 🙂 Şimdi gelelim kodlarımıza öncelikle php tarafında aşağıdaki kodları kullanıyoruz. [crayon-69eba7cff3a42581407565/] Html tarafında ise [crayon-69eba7cff3a4a826492612/] Hayırlı uğurlu olsun 🙂</p>
The post <a href="https://www.sanaldata.com/php-ile-doviz-kurlarini-cekmek">Php ile döviz kurlarını çekmek</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></description>
										<content:encoded><![CDATA[<p>Merhaba arkadaşlar bugün ilk defa .net dışında php ile bir örnek kodu paylaşıcam, herşeyden önce php konusunda desteğini esirgemeyen &#8221; Tugay ÖCAL &#8221; teşekkür ederim kendisine <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Şimdi gelelim kodlarımıza öncelikle php tarafında aşağıdaki kodları kullanıyoruz.</p><pre class="urvanov-syntax-highlighter-plain-tag">$xml = simplexml_load_file('http://www.tcmb.gov.tr/kurlar/today.xml');
foreach ($xml-&gt;Currency as $Currency) {
    // USD ALIŞ-SATIŞ
    if ($Currency['Kod'] == "USD") {
        $usd_DS = $Currency-&gt;BanknoteSelling;
        $usd_DA = $Currency-&gt;BanknoteBuying;
    }
    // EURO ALIŞ-SATIŞ
    if ($Currency['Kod'] == "EUR") {
        $eur_DS = $Currency-&gt;BanknoteSelling;
        $eur_DA = $Currency-&gt;BanknoteBuying;
    }
    // USD EFEKTİF ALIŞ-SATIŞ
    if ($Currency['Kod'] == "USD") {
        $usd_ES = $Currency-&gt;ForexSelling;
        $usd_EA = $Currency-&gt;ForexBuying;
    }
    // EURO EFEKTİF ALIŞ-SATIŞ
    if ($Currency['Kod'] == "EUR") {
        $eur_ES = $Currency-&gt;ForexSelling;
        $eur_EA = $Currency-&gt;ForexBuying;
    }
}</pre><p>Html tarafında ise</p><pre class="urvanov-syntax-highlighter-plain-tag">&lt;table&gt;
    &lt;tr&gt;
        &lt;td style="width: 200px;"&gt;&lt;strong&gt;Para Birimi&lt;/strong&gt;&lt;/td&gt;
        &lt;td style="width: 50px;"&gt;&lt;strong&gt;Alış&lt;/strong&gt;&lt;/td&gt;
        &lt;td style="width: 50px;"&gt;&lt;strong&gt;Satış&lt;/strong&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td&gt;Dolar (USD)&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $usd_DS; ?&gt;&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $usd_DA; ?&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td&gt;Euro (EUR)&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $eur_DS; ?&gt;&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $eur_DA; ?&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td&gt;Dolar (USD) Efektif&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $usd_ES; ?&gt;&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $usd_EA; ?&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td&gt;Euro (EUR) Efektif&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $eur_ES; ?&gt;&lt;/td&gt;
        &lt;td&gt;&lt;?php echo $eur_EA; ?&gt;&lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;</pre><p>Hayırlı uğurlu olsun <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>The post <a href="https://www.sanaldata.com/php-ile-doviz-kurlarini-cekmek">Php ile döviz kurlarını çekmek</a> first appeared on <a href="https://www.sanaldata.com">SanalData | Yazılım ve Teknoloji Haberleri Sitesi</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.sanaldata.com/php-ile-doviz-kurlarini-cekmek/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
