<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[MyBB Depo Forum - Php]]></title>
		<link>https://mybbdepo.com/</link>
		<description><![CDATA[MyBB Depo Forum - https://mybbdepo.com]]></description>
		<pubDate>Wed, 29 Apr 2026 08:05:22 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Alexa Bot]]></title>
			<link>https://mybbdepo.com/alexa-bot-konusu.html</link>
			<pubDate>Wed, 06 Nov 2019 22:30:15 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/alexa-bot-konusu.html</guid>
			<description><![CDATA[Alexa scriptimizin kodlarını sizlerle paylaşıyorum.3 dosyadır ayrı ayrı kaydedip topluca atıyorsunuz.<br />
<br />
<span style="font-weight: bold;">functions.php  </span><br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br /><br />&nbsp; &nbsp; set_time_limit</span><span style="color: #007700">(</span><span style="color: #0000BB">86400</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; function&nbsp;curlAlexa</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;url</span><span style="color: #007700">){<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;ch&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">curl_init</span><span style="color: #007700">();<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_URL</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;url</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_RETURNTRANSFER</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_REFERER</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'https://www.google.com.tr/'</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_USERAGENT</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'Mozilla/5.0&nbsp;(Windows&nbsp;NT&nbsp;10.0;&nbsp;Win64;&nbsp;x64)&nbsp;AppleWebKit/537.36&nbsp;(KHTML,&nbsp;like&nbsp;Gecko)&nbsp;Chrome/72.0.3626.119&nbsp;Safari/537.36'</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_SSL_VERIFYPEER</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">false</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;chData&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">curl_exec</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_close</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; return&nbsp;&#36;chData</span><span style="color: #007700">;<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; </span><span style="color: #007700">}<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; function&nbsp;buffer</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;str</span><span style="color: #007700">){<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; return&nbsp;str_replace</span><span style="color: #007700">(array(</span><span style="color: #DD0000">"&#092;r&#092;n"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"&#092;r"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"&#092;n"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"&#092;t"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp; '</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp; &nbsp;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp; &nbsp; '</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">''</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;str</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; </span><span style="color: #007700">}<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; function&nbsp;getAlexa</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">){<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;page&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">curlAlexa</span><span style="color: #007700">(</span><span style="color: #DD0000">'https://www.alexa.com/siteinfo/'</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; </span><span style="color: #FF8000">##&nbsp;GLOBAL<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">"src='/images/icons/globe-sm.jpg'"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;page</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExq&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'&lt;/strong&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;pageExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;globalExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'--&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">buffer</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;pageExq</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">]));<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'global'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;globalExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; </span><span style="color: #FF8000">##&nbsp;COUNTRY<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">"&lt;img&nbsp;class='img-inline&nbsp;'&nbsp;src='/images/fla"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;page</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExq&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'&lt;/strong&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;pageExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;country&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">buffer</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;pageExq</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; preg_match_all</span><span style="color: #007700">(</span><span style="color: #DD0000">"#gs/(.*?).png'&nbsp;title='(.*?)&nbsp;Flag'&nbsp;alt='(.*?)&nbsp;Flag'&gt;#"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;country</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;cikti</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'flag'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;cikti</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">][</span><span style="color: #0000BB">0</span><span style="color: #007700">]);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'country'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;cikti</span><span style="color: #007700">[</span><span style="color: #0000BB">2</span><span style="color: #007700">][</span><span style="color: #0000BB">0</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;countryExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'vmiddle"&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;country</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'countryRank'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;countryExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; return&nbsp;&#36;data</span><span style="color: #007700">;<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; </span><span style="color: #007700">}<br /><br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">index.php</span><br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">include&nbsp;</span><span style="color: #DD0000">'functions.php'&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&lt;!DOCTYPE&nbsp;html&gt;<br />&lt;html&nbsp;lang="tr"&gt;<br />&lt;head&gt;<br />&nbsp; &nbsp; &lt;meta&nbsp;charset="UTF-8"&nbsp;/&gt;<br />&nbsp; &nbsp; &lt;title&gt;Çalışma&lt;/title&gt;<br />&nbsp; &nbsp; &lt;link&nbsp;rel="stylesheet"&nbsp;type="text/css"&nbsp;href="style.css"&nbsp;/&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br /><br />&nbsp; &nbsp; &lt;form&nbsp;action=""&nbsp;method="POST"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="kapsa"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h2&gt;Alexa&nbsp;Bot&lt;/h2&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;label&nbsp;class="frmEleman"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;em&gt;Siteler&lt;/em&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;textarea&nbsp;name="iSites"&nbsp;placeholder="Siteleri&nbsp;buraya&nbsp;alt&nbsp;alta&nbsp;yazınız."&gt;&lt;/textarea&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/label&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="buttonEleman"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;button&nbsp;type="submit"&gt;GÖNDER&lt;/button&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &lt;/form&gt;<br /><br />&nbsp; &nbsp; <span style="color: #0000BB">&lt;?php<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; if&nbsp;</span><span style="color: #007700">(&nbsp;isset(</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'iSites'</span><span style="color: #007700">])&nbsp;){<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#36;siteler&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #0000BB">chr</span><span style="color: #007700">(</span><span style="color: #0000BB">10</span><span style="color: #007700">),&nbsp;</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'iSites'</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ?&gt;<br /></span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="sonuclar"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h2&gt;Sonuçlar&nbsp;(<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">count</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;siteler</span><span style="color: #007700">)&nbsp;</span><span style="color: #0000BB">?&gt;</span>&nbsp;Site)&lt;/h2&gt;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="sonuclarListe"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">foreach&nbsp;(</span><span style="color: #0000BB">&#36;siteler&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">){&nbsp;</span><span style="color: #0000BB">&#36;siteData&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">getAlexa</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">))&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="sonucTek"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="siteAdi"&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">)&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="rank"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;em&gt;&lt;img&nbsp;src="https://www.alexa.com/images/icons/globe-sm.jpg"&nbsp;/&gt;Global&nbsp;Rank&lt;/em&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;b&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'global'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/b&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="rank"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;em&gt;&lt;img&nbsp;src="https://www.alexa.com/images/flags/<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'flag'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>.png"&nbsp;/&gt;Rank&nbsp;in&nbsp;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'country'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/em&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;b&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'countryRank'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/b&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000BB">&lt;?php&nbsp;flush</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">ob_get_contents</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">ob_flush</span><span style="color: #007700">();&nbsp;}&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000BB">&lt;?php<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: #007700">}<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; ?&gt;<br /></span>&nbsp; &nbsp; &nbsp; &nbsp; <br />&lt;/body&gt;<br />&lt;/html&gt;&nbsp;<br /></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">style.css</span><br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">@</span><span style="color: #0000BB">import&nbsp;url</span><span style="color: #007700">(</span><span style="color: #DD0000">'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&amp;subset=latin,latin-ext'</span><span style="color: #007700">);<br />*{</span><span style="color: #0000BB">padding</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;</span><span style="color: #0000BB">margin</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;</span><span style="color: #0000BB">border</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">}<br /></span><span style="color: #0000BB">body</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">:</span><span style="color: #0000BB">0px</span><span style="color: #007700">;</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#f7f7f7}<br /></span><span style="color: #0000BB">ul</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">li</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">p</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h1</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h2</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h3</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h4</span><span style="color: #007700">{list-</span><span style="color: #0000BB">style</span><span style="color: #007700">:</span><span style="color: #0000BB">none</span><span style="color: #007700">;</span><span style="color: #0000BB">padding</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;</span><span style="color: #0000BB">margin</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">}<br /></span><span style="color: #0000BB">input</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">select</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">textarea</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">button</span><span style="color: #007700">{</span><span style="color: #0000BB">outline</span><span style="color: #007700">:</span><span style="color: #0000BB">none</span><span style="color: #007700">;</span><span style="color: #0000BB">border</span><span style="color: #007700">:</span><span style="color: #0000BB">none</span><span style="color: #007700">}<br /><br />.</span><span style="color: #0000BB">kapsa</span><span style="color: #007700">,&nbsp;.</span><span style="color: #0000BB">sonuclar</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#fff;padding:20px;width:900px;margin:20px&nbsp;auto;overflow:hidden;box-shadow:0px&nbsp;1px&nbsp;5px&nbsp;rgba(0,0,0,&nbsp;0.1)}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">kapsa&nbsp;h2</span><span style="color: #007700">,&nbsp;.</span><span style="color: #0000BB">sonuclar&nbsp;h2</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;500&nbsp;19px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#403c84}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">sonuclar</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:</span><span style="color: #0000BB">0px</span><span style="color: #007700">}<br /><br />.</span><span style="color: #0000BB">frmEleman</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:</span><span style="color: #0000BB">20px</span><span style="color: #007700">;</span><span style="color: #0000BB">position</span><span style="color: #007700">:</span><span style="color: #0000BB">relative</span><span style="color: #007700">;</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">block</span><span style="color: #007700">;</span><span style="color: #0000BB">cursor</span><span style="color: #007700">:</span><span style="color: #0000BB">pointer</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">frmEleman&nbsp;em</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;400&nbsp;14px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#999;display:block;margin-bottom:6px}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">frmEleman&nbsp;textarea</span><span style="color: #007700">{</span><span style="color: #0000BB">width</span><span style="color: #007700">:</span><span style="color: #0000BB">100</span><span style="color: #007700">%;</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#fafafa;padding:10px;border:2px&nbsp;solid&nbsp;#e5e5e5;border-radius:4px;font:normal&nbsp;500&nbsp;14px/24px&nbsp;'Roboto';color:#5b5b5b;transition:all&nbsp;0.14s&nbsp;ease-in-out;box-sizing:border-box;min-height:240px;max-width:100%;min-width:100%}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">frmEleman&nbsp;textarea</span><span style="color: #007700">::</span><span style="color: #0000BB">placeholder</span><span style="color: #007700">{</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#ae8c8c}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">frmEleman&nbsp;textarea</span><span style="color: #007700">:</span><span style="color: #0000BB">focus</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#fff;border-color:#a7d7f9;box-shadow:0px&nbsp;0px&nbsp;24px&nbsp;-2px&nbsp;rgba(167,215,249,&nbsp;0.8)}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">buttonEleman&nbsp;button</span><span style="color: #007700">{</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">inline</span><span style="color: #007700">-</span><span style="color: #0000BB">block</span><span style="color: #007700">;</span><span style="color: #0000BB">width</span><span style="color: #007700">:</span><span style="color: #0000BB">210px</span><span style="color: #007700">;</span><span style="color: #0000BB">border</span><span style="color: #007700">-</span><span style="color: #0000BB">radius</span><span style="color: #007700">:</span><span style="color: #0000BB">4px</span><span style="color: #007700">;</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#f54d0b;color:#fff;font:normal&nbsp;500&nbsp;14px&nbsp;'Roboto';cursor:pointer;padding:13px&nbsp;0px&nbsp;12px&nbsp;0px;transition:background&nbsp;0.14s&nbsp;ease-in-out;margin-top:20px}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">buttonEleman&nbsp;button</span><span style="color: #007700">:</span><span style="color: #0000BB">hover</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#ffab1e}<br /><br />/**/<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">sonuclarListe</span><span style="color: #007700">{</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">flex</span><span style="color: #007700">;</span><span style="color: #0000BB">flex</span><span style="color: #007700">-</span><span style="color: #0000BB">wrap</span><span style="color: #007700">:</span><span style="color: #0000BB">wrap</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">sonucTek</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#f9f9f9;border:1px&nbsp;solid&nbsp;#ddd;border-radius:4px;margin-top:20px;margin-left:20px;padding:12px;width:calc((100%&nbsp;-&nbsp;40px&nbsp;-&nbsp;78px)&nbsp;/&nbsp;3)}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">sonucTek</span><span style="color: #007700">:</span><span style="color: #0000BB">nth</span><span style="color: #007700">-</span><span style="color: #0000BB">child</span><span style="color: #007700">(</span><span style="color: #0000BB">3n&nbsp;</span><span style="color: #007700">+&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">){</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">left</span><span style="color: #007700">:</span><span style="color: #0000BB">0px</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">siteAdi</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;500&nbsp;17px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#27ae60}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">rank</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:</span><span style="color: #0000BB">14px</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">rank&nbsp;em</span><span style="color: #007700">{</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">flex</span><span style="color: #007700">;</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;400&nbsp;13px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#888;align-items:center}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">rank&nbsp;em&nbsp;img</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">right</span><span style="color: #007700">:</span><span style="color: #0000BB">8px</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">rank&nbsp;b</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;700&nbsp;21px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#333;display:block;margin-top:6px}&nbsp;<br /></span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">Sadece deep-kod.org a özeldir.</span>]]></description>
			<content:encoded><![CDATA[Alexa scriptimizin kodlarını sizlerle paylaşıyorum.3 dosyadır ayrı ayrı kaydedip topluca atıyorsunuz.<br />
<br />
<span style="font-weight: bold;">functions.php  </span><br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br /><br />&nbsp; &nbsp; set_time_limit</span><span style="color: #007700">(</span><span style="color: #0000BB">86400</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; function&nbsp;curlAlexa</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;url</span><span style="color: #007700">){<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;ch&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">curl_init</span><span style="color: #007700">();<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_URL</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;url</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_RETURNTRANSFER</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_REFERER</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'https://www.google.com.tr/'</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_USERAGENT</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'Mozilla/5.0&nbsp;(Windows&nbsp;NT&nbsp;10.0;&nbsp;Win64;&nbsp;x64)&nbsp;AppleWebKit/537.36&nbsp;(KHTML,&nbsp;like&nbsp;Gecko)&nbsp;Chrome/72.0.3626.119&nbsp;Safari/537.36'</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_setopt</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">CURLOPT_SSL_VERIFYPEER</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">false</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;chData&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">curl_exec</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; curl_close</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;ch</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; return&nbsp;&#36;chData</span><span style="color: #007700">;<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; </span><span style="color: #007700">}<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; function&nbsp;buffer</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;str</span><span style="color: #007700">){<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; return&nbsp;str_replace</span><span style="color: #007700">(array(</span><span style="color: #DD0000">"&#092;r&#092;n"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"&#092;r"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"&#092;n"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"&#092;t"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp; '</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp; &nbsp;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp; &nbsp; '</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">''</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;str</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; </span><span style="color: #007700">}<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; function&nbsp;getAlexa</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">){<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;page&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">curlAlexa</span><span style="color: #007700">(</span><span style="color: #DD0000">'https://www.alexa.com/siteinfo/'</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; </span><span style="color: #FF8000">##&nbsp;GLOBAL<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">"src='/images/icons/globe-sm.jpg'"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;page</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExq&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'&lt;/strong&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;pageExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;globalExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'--&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">buffer</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;pageExq</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">]));<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'global'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;globalExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; </span><span style="color: #FF8000">##&nbsp;COUNTRY<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">"&lt;img&nbsp;class='img-inline&nbsp;'&nbsp;src='/images/fla"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;page</span><span style="color: #007700">);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;pageExq&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'&lt;/strong&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;pageExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;country&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">buffer</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;pageExq</span><span style="color: #007700">[</span><span style="color: #0000BB">0</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; preg_match_all</span><span style="color: #007700">(</span><span style="color: #DD0000">"#gs/(.*?).png'&nbsp;title='(.*?)&nbsp;Flag'&nbsp;alt='(.*?)&nbsp;Flag'&gt;#"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;country</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;cikti</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'flag'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;cikti</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">][</span><span style="color: #0000BB">0</span><span style="color: #007700">]);<br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'country'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;cikti</span><span style="color: #007700">[</span><span style="color: #0000BB">2</span><span style="color: #007700">][</span><span style="color: #0000BB">0</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;countryExp&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'vmiddle"&gt;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;country</span><span style="color: #007700">);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &#36;data</span><span style="color: #007700">[</span><span style="color: #DD0000">'countryRank'</span><span style="color: #007700">]&nbsp;=&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;countryExp</span><span style="color: #007700">[</span><span style="color: #0000BB">1</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; return&nbsp;&#36;data</span><span style="color: #007700">;<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; </span><span style="color: #007700">}<br /><br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">index.php</span><br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">include&nbsp;</span><span style="color: #DD0000">'functions.php'&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&lt;!DOCTYPE&nbsp;html&gt;<br />&lt;html&nbsp;lang="tr"&gt;<br />&lt;head&gt;<br />&nbsp; &nbsp; &lt;meta&nbsp;charset="UTF-8"&nbsp;/&gt;<br />&nbsp; &nbsp; &lt;title&gt;Çalışma&lt;/title&gt;<br />&nbsp; &nbsp; &lt;link&nbsp;rel="stylesheet"&nbsp;type="text/css"&nbsp;href="style.css"&nbsp;/&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br /><br />&nbsp; &nbsp; &lt;form&nbsp;action=""&nbsp;method="POST"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="kapsa"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h2&gt;Alexa&nbsp;Bot&lt;/h2&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;label&nbsp;class="frmEleman"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;em&gt;Siteler&lt;/em&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;textarea&nbsp;name="iSites"&nbsp;placeholder="Siteleri&nbsp;buraya&nbsp;alt&nbsp;alta&nbsp;yazınız."&gt;&lt;/textarea&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/label&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="buttonEleman"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;button&nbsp;type="submit"&gt;GÖNDER&lt;/button&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &lt;/form&gt;<br /><br />&nbsp; &nbsp; <span style="color: #0000BB">&lt;?php<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; if&nbsp;</span><span style="color: #007700">(&nbsp;isset(</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'iSites'</span><span style="color: #007700">])&nbsp;){<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &#36;siteler&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #0000BB">chr</span><span style="color: #007700">(</span><span style="color: #0000BB">10</span><span style="color: #007700">),&nbsp;</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'iSites'</span><span style="color: #007700">]);<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ?&gt;<br /></span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="sonuclar"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h2&gt;Sonuçlar&nbsp;(<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">count</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;siteler</span><span style="color: #007700">)&nbsp;</span><span style="color: #0000BB">?&gt;</span>&nbsp;Site)&lt;/h2&gt;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="sonuclarListe"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">foreach&nbsp;(</span><span style="color: #0000BB">&#36;siteler&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">){&nbsp;</span><span style="color: #0000BB">&#36;siteData&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">getAlexa</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">))&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="sonucTek"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="siteAdi"&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;site</span><span style="color: #007700">)&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="rank"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;em&gt;&lt;img&nbsp;src="https://www.alexa.com/images/icons/globe-sm.jpg"&nbsp;/&gt;Global&nbsp;Rank&lt;/em&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;b&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'global'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/b&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div&nbsp;class="rank"&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;em&gt;&lt;img&nbsp;src="https://www.alexa.com/images/flags/<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'flag'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>.png"&nbsp;/&gt;Rank&nbsp;in&nbsp;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'country'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/em&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;b&gt;<span style="color: #0000BB">&lt;?php&nbsp;</span><span style="color: #007700">echo&nbsp;</span><span style="color: #0000BB">&#36;siteData</span><span style="color: #007700">[</span><span style="color: #DD0000">'countryRank'</span><span style="color: #007700">]&nbsp;</span><span style="color: #0000BB">?&gt;</span>&lt;/b&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000BB">&lt;?php&nbsp;flush</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">ob_get_contents</span><span style="color: #007700">();&nbsp;</span><span style="color: #0000BB">ob_flush</span><span style="color: #007700">();&nbsp;}&nbsp;</span><span style="color: #0000BB">?&gt;<br /></span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000BB">&lt;?php<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; </span><span style="color: #007700">}<br /><br />&nbsp;</span><span style="color: #0000BB"> &nbsp; ?&gt;<br /></span>&nbsp; &nbsp; &nbsp; &nbsp; <br />&lt;/body&gt;<br />&lt;/html&gt;&nbsp;<br /></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">style.css</span><br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #007700">@</span><span style="color: #0000BB">import&nbsp;url</span><span style="color: #007700">(</span><span style="color: #DD0000">'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&amp;subset=latin,latin-ext'</span><span style="color: #007700">);<br />*{</span><span style="color: #0000BB">padding</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;</span><span style="color: #0000BB">margin</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;</span><span style="color: #0000BB">border</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">}<br /></span><span style="color: #0000BB">body</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">:</span><span style="color: #0000BB">0px</span><span style="color: #007700">;</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#f7f7f7}<br /></span><span style="color: #0000BB">ul</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">li</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">p</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h1</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h2</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h3</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">h4</span><span style="color: #007700">{list-</span><span style="color: #0000BB">style</span><span style="color: #007700">:</span><span style="color: #0000BB">none</span><span style="color: #007700">;</span><span style="color: #0000BB">padding</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">;</span><span style="color: #0000BB">margin</span><span style="color: #007700">:</span><span style="color: #0000BB">0</span><span style="color: #007700">}<br /></span><span style="color: #0000BB">input</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">select</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">textarea</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">button</span><span style="color: #007700">{</span><span style="color: #0000BB">outline</span><span style="color: #007700">:</span><span style="color: #0000BB">none</span><span style="color: #007700">;</span><span style="color: #0000BB">border</span><span style="color: #007700">:</span><span style="color: #0000BB">none</span><span style="color: #007700">}<br /><br />.</span><span style="color: #0000BB">kapsa</span><span style="color: #007700">,&nbsp;.</span><span style="color: #0000BB">sonuclar</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#fff;padding:20px;width:900px;margin:20px&nbsp;auto;overflow:hidden;box-shadow:0px&nbsp;1px&nbsp;5px&nbsp;rgba(0,0,0,&nbsp;0.1)}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">kapsa&nbsp;h2</span><span style="color: #007700">,&nbsp;.</span><span style="color: #0000BB">sonuclar&nbsp;h2</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;500&nbsp;19px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#403c84}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">sonuclar</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:</span><span style="color: #0000BB">0px</span><span style="color: #007700">}<br /><br />.</span><span style="color: #0000BB">frmEleman</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:</span><span style="color: #0000BB">20px</span><span style="color: #007700">;</span><span style="color: #0000BB">position</span><span style="color: #007700">:</span><span style="color: #0000BB">relative</span><span style="color: #007700">;</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">block</span><span style="color: #007700">;</span><span style="color: #0000BB">cursor</span><span style="color: #007700">:</span><span style="color: #0000BB">pointer</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">frmEleman&nbsp;em</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;400&nbsp;14px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#999;display:block;margin-bottom:6px}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">frmEleman&nbsp;textarea</span><span style="color: #007700">{</span><span style="color: #0000BB">width</span><span style="color: #007700">:</span><span style="color: #0000BB">100</span><span style="color: #007700">%;</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#fafafa;padding:10px;border:2px&nbsp;solid&nbsp;#e5e5e5;border-radius:4px;font:normal&nbsp;500&nbsp;14px/24px&nbsp;'Roboto';color:#5b5b5b;transition:all&nbsp;0.14s&nbsp;ease-in-out;box-sizing:border-box;min-height:240px;max-width:100%;min-width:100%}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">frmEleman&nbsp;textarea</span><span style="color: #007700">::</span><span style="color: #0000BB">placeholder</span><span style="color: #007700">{</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#ae8c8c}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">frmEleman&nbsp;textarea</span><span style="color: #007700">:</span><span style="color: #0000BB">focus</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#fff;border-color:#a7d7f9;box-shadow:0px&nbsp;0px&nbsp;24px&nbsp;-2px&nbsp;rgba(167,215,249,&nbsp;0.8)}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">buttonEleman&nbsp;button</span><span style="color: #007700">{</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">inline</span><span style="color: #007700">-</span><span style="color: #0000BB">block</span><span style="color: #007700">;</span><span style="color: #0000BB">width</span><span style="color: #007700">:</span><span style="color: #0000BB">210px</span><span style="color: #007700">;</span><span style="color: #0000BB">border</span><span style="color: #007700">-</span><span style="color: #0000BB">radius</span><span style="color: #007700">:</span><span style="color: #0000BB">4px</span><span style="color: #007700">;</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#f54d0b;color:#fff;font:normal&nbsp;500&nbsp;14px&nbsp;'Roboto';cursor:pointer;padding:13px&nbsp;0px&nbsp;12px&nbsp;0px;transition:background&nbsp;0.14s&nbsp;ease-in-out;margin-top:20px}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">buttonEleman&nbsp;button</span><span style="color: #007700">:</span><span style="color: #0000BB">hover</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#ffab1e}<br /><br />/**/<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">sonuclarListe</span><span style="color: #007700">{</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">flex</span><span style="color: #007700">;</span><span style="color: #0000BB">flex</span><span style="color: #007700">-</span><span style="color: #0000BB">wrap</span><span style="color: #007700">:</span><span style="color: #0000BB">wrap</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">sonucTek</span><span style="color: #007700">{</span><span style="color: #0000BB">background</span><span style="color: #007700">:</span><span style="color: #FF8000">#f9f9f9;border:1px&nbsp;solid&nbsp;#ddd;border-radius:4px;margin-top:20px;margin-left:20px;padding:12px;width:calc((100%&nbsp;-&nbsp;40px&nbsp;-&nbsp;78px)&nbsp;/&nbsp;3)}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">sonucTek</span><span style="color: #007700">:</span><span style="color: #0000BB">nth</span><span style="color: #007700">-</span><span style="color: #0000BB">child</span><span style="color: #007700">(</span><span style="color: #0000BB">3n&nbsp;</span><span style="color: #007700">+&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">){</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">left</span><span style="color: #007700">:</span><span style="color: #0000BB">0px</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">siteAdi</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;500&nbsp;17px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#27ae60}<br /><br /></span><span style="color: #007700">.</span><span style="color: #0000BB">rank</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">top</span><span style="color: #007700">:</span><span style="color: #0000BB">14px</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">rank&nbsp;em</span><span style="color: #007700">{</span><span style="color: #0000BB">display</span><span style="color: #007700">:</span><span style="color: #0000BB">flex</span><span style="color: #007700">;</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;400&nbsp;13px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#888;align-items:center}<br /></span><span style="color: #007700">.</span><span style="color: #0000BB">rank&nbsp;em&nbsp;img</span><span style="color: #007700">{</span><span style="color: #0000BB">margin</span><span style="color: #007700">-</span><span style="color: #0000BB">right</span><span style="color: #007700">:</span><span style="color: #0000BB">8px</span><span style="color: #007700">}<br />.</span><span style="color: #0000BB">rank&nbsp;b</span><span style="color: #007700">{</span><span style="color: #0000BB">font</span><span style="color: #007700">:</span><span style="color: #0000BB">normal&nbsp;700&nbsp;21px&nbsp;</span><span style="color: #DD0000">'Roboto'</span><span style="color: #007700">;</span><span style="color: #0000BB">color</span><span style="color: #007700">:</span><span style="color: #FF8000">#333;display:block;margin-top:6px}&nbsp;<br /></span></code></div></div></div>
<br />
<br />
<span style="font-weight: bold;">Sadece deep-kod.org a özeldir.</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Son Konuları Nasıl Ekleyebilirim ?]]></title>
			<link>https://mybbdepo.com/son-konulari-nasil-ekleyebilirim-konusu.html</link>
			<pubDate>Sun, 30 Apr 2017 14:46:41 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/son-konulari-nasil-ekleyebilirim-konusu.html</guid>
			<description><![CDATA[Merhaba arkadaşlar web sitemde webmasterler için araçlar scripti kurdum aşağıdaki S.S belirttiğim yere yani scriptin sağ sidebarına forum içerisinde paylaşılan son 5 yada 10 konuyu kırmızı kutu içerisine aldığım yerde nasıl orada gösterebilirim yardımcı olurmusunuz ?<br />
<br />
<div align="center"><img src="http://i.hizliresim.com/vb2896.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /></div>
<br />
NOT: Konu doğru yerde değilse moderatör arkadaşlardan özür dilerim ve doğru yere almalarını rica ederim.]]></description>
			<content:encoded><![CDATA[Merhaba arkadaşlar web sitemde webmasterler için araçlar scripti kurdum aşağıdaki S.S belirttiğim yere yani scriptin sağ sidebarına forum içerisinde paylaşılan son 5 yada 10 konuyu kırmızı kutu içerisine aldığım yerde nasıl orada gösterebilirim yardımcı olurmusunuz ?<br />
<br />
<div align="center"><img src="http://i.hizliresim.com/vb2896.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /></div>
<br />
NOT: Konu doğru yerde değilse moderatör arkadaşlardan özür dilerim ve doğru yere almalarını rica ederim.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Reklam Geçiş sistemi Yardım]]></title>
			<link>https://mybbdepo.com/reklam-gecis-sistemi-yardim-konusu.html</link>
			<pubDate>Thu, 25 Aug 2016 00:02:06 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/reklam-gecis-sistemi-yardim-konusu.html</guid>
			<description><![CDATA[Arkadaşlar yapmak istediğim şey şu bi php sayfam var ads.php diyelim buraya girince resim çıkacak reklam resmi olacak reklam resmine tıklayınca link.tl açılacak onla reklamlar başarılı geçildiğinde link geçildikten sonra başarılı yazacak Not: tüm tarayıcılarda başarılı yazcak Bu sistemyapmak istiyorum neden diyorsanız program yapıyorum ve emek karşılığı amacıyla günde sadece 1 kere reklam geçmelerini istiyorum yardım ederseniz sevinirim]]></description>
			<content:encoded><![CDATA[Arkadaşlar yapmak istediğim şey şu bi php sayfam var ads.php diyelim buraya girince resim çıkacak reklam resmi olacak reklam resmine tıklayınca link.tl açılacak onla reklamlar başarılı geçildiğinde link geçildikten sonra başarılı yazacak Not: tüm tarayıcılarda başarılı yazcak Bu sistemyapmak istiyorum neden diyorsanız program yapıyorum ve emek karşılığı amacıyla günde sadece 1 kere reklam geçmelerini istiyorum yardım ederseniz sevinirim]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Php Hane Sayısı Ayırma Kodu Destek]]></title>
			<link>https://mybbdepo.com/php-hane-sayisi-ayirma-kodu-destek-konusu.html</link>
			<pubDate>Wed, 15 Apr 2015 23:47:12 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-hane-sayisi-ayirma-kodu-destek-konusu.html</guid>
			<description><![CDATA[<span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;">Merhaba arkadaşlar mybb de girilen sayıyı 4 haneye bölme kodunda yardım edebilirisiniz? </span></span></span><br />
<br />
<br />
<span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;">Örneğin girilen </span></span></span><span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;"><span style="font-weight: bold;">1234567891234567</span></span></span></span><span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;"> sayısını 1234   5678 9123 4567 haneli gruba ayırma kodunu nasıl yapabilirim php dili ile? </span></span></span>]]></description>
			<content:encoded><![CDATA[<span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;">Merhaba arkadaşlar mybb de girilen sayıyı 4 haneye bölme kodunda yardım edebilirisiniz? </span></span></span><br />
<br />
<br />
<span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;">Örneğin girilen </span></span></span><span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;"><span style="font-weight: bold;">1234567891234567</span></span></span></span><span style="color: #333333;"><span style="font-size: x-small;"><span style="font-family: Verdana, 'Lucida Sans', HelveticaNeue, Arial, sans-serif;"> sayısını 1234   5678 9123 4567 haneli gruba ayırma kodunu nasıl yapabilirim php dili ile? </span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP İle Google Bottan İstediğinizi Gizleyin]]></title>
			<link>https://mybbdepo.com/php-ile-google-bottan-istediginizi-gizleyin-konusu.html</link>
			<pubDate>Sun, 15 Mar 2015 16:21:51 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-ile-google-bottan-istediginizi-gizleyin-konusu.html</guid>
			<description><![CDATA[<span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Merhaba Arkadaşlar,</span></span></span><br />
<br />
<br />
<span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Bildiğiniz Üzere Arada Forumda Link vs Gizlemeniz Gerekebilir. Google Botlarından </span></span></span><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Örnek Veriyorum Sitenize Bir Link Ekleyeceksiniz Ama Linkin Google'a Gözükmesini İstemiyorsunuz. Bunun İçin;</span></span></span><br />
<br />
<span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">''İndex.php'' Açıp En Alt Satıra Geliyoruz. PHP Tag'ı Kapalı Değil İse "?&gt;" Yapıp Aşağıya Geçiyoruz ve Şu Kodu Ekliyoruz.</span></span></span><br />
<br />
<br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>&lt;?php <br />
if(!strpos(&#36;_SERVER['HTTP_USER_AGENT'], 'google')){ <br />
echo '&lt;a href="http://site-adresiniz.com" title="mybb"&gt;mybb&lt;/a&gt;'; <br />
} <br />
?&gt;</code></div></div>
<br />
<br />
<br />
<span style="color: #000000;"><span style="font-size: small;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Şeklinde Yaptığınızda Google Bot Sitenizdeki Linki Göremeyecektir.</span></span></span></span></span></span></span></span><br />
<br />
<br />
<span style="font-size: small;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-weight: bold;"><span style="color: #ff3333;">Dip Not:</span></span> <span style="color: #000000;">Kod Arasından</span></span></span><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"> <span style="font-weight: bold;">''</span></span></span></span></span><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-weight: bold;">http://site-adresiniz.</span></span></span></span></span><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-weight: bold;">com''</span> Kısmını Kendinize Göre Düzenlemelisiniz.</span></span></span></span></span></span><br />
</span></span></span>]]></description>
			<content:encoded><![CDATA[<span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Merhaba Arkadaşlar,</span></span></span><br />
<br />
<br />
<span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Bildiğiniz Üzere Arada Forumda Link vs Gizlemeniz Gerekebilir. Google Botlarından </span></span></span><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Örnek Veriyorum Sitenize Bir Link Ekleyeceksiniz Ama Linkin Google'a Gözükmesini İstemiyorsunuz. Bunun İçin;</span></span></span><br />
<br />
<span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">''İndex.php'' Açıp En Alt Satıra Geliyoruz. PHP Tag'ı Kapalı Değil İse "?&gt;" Yapıp Aşağıya Geçiyoruz ve Şu Kodu Ekliyoruz.</span></span></span><br />
<br />
<br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>&lt;?php <br />
if(!strpos(&#36;_SERVER['HTTP_USER_AGENT'], 'google')){ <br />
echo '&lt;a href="http://site-adresiniz.com" title="mybb"&gt;mybb&lt;/a&gt;'; <br />
} <br />
?&gt;</code></div></div>
<br />
<br />
<br />
<span style="color: #000000;"><span style="font-size: small;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;">Şeklinde Yaptığınızda Google Bot Sitenizdeki Linki Göremeyecektir.</span></span></span></span></span></span></span></span><br />
<br />
<br />
<span style="font-size: small;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-size: small;"><span style="font-family: Tahoma, Arial, sans-serif;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-weight: bold;"><span style="color: #ff3333;">Dip Not:</span></span> <span style="color: #000000;">Kod Arasından</span></span></span><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"> <span style="font-weight: bold;">''</span></span></span></span></span><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-weight: bold;">http://site-adresiniz.</span></span></span></span></span><span style="color: #000000;"><span style="color: #000000;"><span style="font-size: small;"><span style="font-family: Arial;"><span style="font-weight: bold;">com''</span> Kısmını Kendinize Göre Düzenlemelisiniz.</span></span></span></span></span></span><br />
</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP PDO Kullanımı]]></title>
			<link>https://mybbdepo.com/php-pdo-kullanimi-konusu.html</link>
			<pubDate>Wed, 18 Feb 2015 13:32:16 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-pdo-kullanimi-konusu.html</guid>
			<description><![CDATA[Merhaba Arkadaşlar Bugün Sizlere PHP'de PDO Kullanımından Bahsedeceğim.<br />
<br />
İlk Olarak PDO Nedir ?<br />
- PDO'da mysql_li gibidir. Açılımı PHP DATA OBJECTS(PHP Veri Objeleri) olan PDO ile mysql_li ile yaptıklarımızı yapabiliriz.<br />
Ayrıca Artık PHP PDO'yu tercih ediyor. eğer mysql_li kullanırsanız hata verecektir fakat yine mysql_li bağlantı ayarlarınızı yapıp veri çekebilirsiniz.<br />
<br />
Mysql'de Bağlantı İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;baglanti&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"localhost"</span><span style="color: #007700">,</span><span style="color: #DD0000">"root"</span><span style="color: #007700">,</span><span style="color: #DD0000">""</span><span style="color: #007700">)&nbsp;or&nbsp;die&nbsp;(</span><span style="color: #0000BB">mysql_error</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">mysql_select_db</span><span style="color: #007700">(</span><span style="color: #DD0000">"test"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;baglanti</span><span style="color: #007700">)&nbsp;or&nbsp;die&nbsp;(&nbsp;</span><span style="color: #0000BB">mysql_error</span><span style="color: #007700">()&nbsp;);<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da ise try ve catch yapısını kullanıyoruz. try catch yapısını kullanmamızın amacı hataları yakalayabilmek<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">try&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;db&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">PDO</span><span style="color: #007700">(</span><span style="color: #DD0000">"mysql:host=localhost;dbname=test"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"root"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">);<br />}&nbsp;catch&nbsp;(&nbsp;</span><span style="color: #0000BB">PDOException&nbsp;&#36;e&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&nbsp;</span><span style="color: #0000BB">&#36;e</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getMessage</span><span style="color: #007700">();<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de Select İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;sorgu&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SELECT&nbsp;*&nbsp;FROM&nbsp;haberler"</span><span style="color: #007700">);<br />while(</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">=</span><span style="color: #0000BB">mysql_fetch_array</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;sorgu</span><span style="color: #007700">)){<br />echo&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">[</span><span style="color: #DD0000">"haber"</span><span style="color: #007700">].</span><span style="color: #DD0000">""</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da Select İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;sorgu&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SELECT&nbsp;*&nbsp;FROM&nbsp;haberler"</span><span style="color: #007700">);<br />foreach(</span><span style="color: #0000BB">&#36;sorgu&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">[</span><span style="color: #DD0000">"haber"</span><span style="color: #007700">].</span><span style="color: #DD0000">""</span><span style="color: #007700">;<br />&nbsp;}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de Insert(Ekleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;ekle&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;haberler&nbsp;(baslik,icerik)&nbsp;VALUES('başlığımız',&nbsp;'iceriğimiz')"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;ekle</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Eklendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da Insert(Ekleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;ekle&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">query</span><span style="color: #007700">(</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;haberler&nbsp;(baslik,icerik)&nbsp;VALUES('başlığımız',&nbsp;'iceriğimiz')"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;ekle</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Eklendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
ve ya<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;ekle</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">prepare</span><span style="color: #007700">(</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;?,&nbsp;icerik=&nbsp;?"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">&#36;ekle2&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">execute</span><span style="color: #007700">(array(</span><span style="color: #DD0000">"başlığımız"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"iceriğimiz"</span><span style="color: #007700">));<br />if&nbsp;(</span><span style="color: #0000BB">&#36;ekle2</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Eklendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de Update(Güncelleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;update&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"UPDATE&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;'baslığımız&nbsp;güncellendi'"</span><span style="color: #007700">);<br />if&nbsp;(&nbsp;</span><span style="color: #0000BB">&#36;update&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Güncellendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da Update(Güncelleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;update&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">query</span><span style="color: #007700">(</span><span style="color: #DD0000">"UPDATE&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;'baslığımız&nbsp;güncellendi'"</span><span style="color: #007700">);<br />if&nbsp;(&nbsp;</span><span style="color: #0000BB">&#36;update&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Güncellendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
ve ya<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;update&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">prepare</span><span style="color: #007700">(</span><span style="color: #DD0000">"UPDATE&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;:baslikk"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">&#36;update2&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;query</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">execute</span><span style="color: #007700">(array(</span><span style="color: #DD0000">"baslikk"&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">"baslığımız&nbsp;güncellendi"</span><span style="color: #007700">));<br />if&nbsp;(&nbsp;</span><span style="color: #0000BB">&#36;update2&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Güncellendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de DELETE(Silme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&#36;delete&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"DELETE&nbsp;FROM&nbsp;haberler"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;delete</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Bütün&nbsp;Haberler&nbsp;Silindi."</span><span style="color: #007700">;<br />}&nbsp;<br /></span></code></div></div></div>
<br />
PDO'da DELETE(Silme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&#36;delete&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">exec</span><span style="color: #007700">(</span><span style="color: #DD0000">"DELETE&nbsp;FROM&nbsp;uyeler"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;delete</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Bütün&nbsp;Haberler&nbsp;Silindi."</span><span style="color: #007700">;<br />}&nbsp;<br /></span></code></div></div></div>
<br />
<br />
Mysql'de Bağlantı Sonlandırma İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">mysql_close</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">);&nbsp;<br /></span></code></div></div></div>
<br />
PDO'da Bağlantı Sonlandırma İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&#36;db&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">null</span><span style="color: #007700">;&nbsp;<br /></span></code></div></div></div>
<br />
PDO gözünüze zor gözükebilir ki zamanında benimde öyleydi fakat yavaş yavaş ısındım bir göz atarsanız nerdeyse mysql ile aynı olduğunu anlarsınız ancak try catch yapısı sizin aklınızı karıştırabilir ki benimde aklımı karıştırdı fakat pekde zor değil mantığı anlarsanız gerisi kolay iyi forumlar dilerim. umarım yardımcı olmuştur...<br />
<br />
Ayrıca Buradan da PDO ile ilgili Benim Kaçırdığım Bilgileri Öğrenebilirsiniz.<br />
<br />
<blockquote><cite>Alıntı:</cite><a href="http://php.net/pdo" target="_blank">http://php.net/pdo</a></blockquote>
]]></description>
			<content:encoded><![CDATA[Merhaba Arkadaşlar Bugün Sizlere PHP'de PDO Kullanımından Bahsedeceğim.<br />
<br />
İlk Olarak PDO Nedir ?<br />
- PDO'da mysql_li gibidir. Açılımı PHP DATA OBJECTS(PHP Veri Objeleri) olan PDO ile mysql_li ile yaptıklarımızı yapabiliriz.<br />
Ayrıca Artık PHP PDO'yu tercih ediyor. eğer mysql_li kullanırsanız hata verecektir fakat yine mysql_li bağlantı ayarlarınızı yapıp veri çekebilirsiniz.<br />
<br />
Mysql'de Bağlantı İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;baglanti&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_connect</span><span style="color: #007700">(</span><span style="color: #DD0000">"localhost"</span><span style="color: #007700">,</span><span style="color: #DD0000">"root"</span><span style="color: #007700">,</span><span style="color: #DD0000">""</span><span style="color: #007700">)&nbsp;or&nbsp;die&nbsp;(</span><span style="color: #0000BB">mysql_error</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">mysql_select_db</span><span style="color: #007700">(</span><span style="color: #DD0000">"test"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;baglanti</span><span style="color: #007700">)&nbsp;or&nbsp;die&nbsp;(&nbsp;</span><span style="color: #0000BB">mysql_error</span><span style="color: #007700">()&nbsp;);<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da ise try ve catch yapısını kullanıyoruz. try catch yapısını kullanmamızın amacı hataları yakalayabilmek<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">try&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;db&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">PDO</span><span style="color: #007700">(</span><span style="color: #DD0000">"mysql:host=localhost;dbname=test"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"root"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">);<br />}&nbsp;catch&nbsp;(&nbsp;</span><span style="color: #0000BB">PDOException&nbsp;&#36;e&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&nbsp;</span><span style="color: #0000BB">&#36;e</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getMessage</span><span style="color: #007700">();<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de Select İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;sorgu&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SELECT&nbsp;*&nbsp;FROM&nbsp;haberler"</span><span style="color: #007700">);<br />while(</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">=</span><span style="color: #0000BB">mysql_fetch_array</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;sorgu</span><span style="color: #007700">)){<br />echo&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">[</span><span style="color: #DD0000">"haber"</span><span style="color: #007700">].</span><span style="color: #DD0000">""</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da Select İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;sorgu&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SELECT&nbsp;*&nbsp;FROM&nbsp;haberler"</span><span style="color: #007700">);<br />foreach(</span><span style="color: #0000BB">&#36;sorgu&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;g</span><span style="color: #007700">[</span><span style="color: #DD0000">"haber"</span><span style="color: #007700">].</span><span style="color: #DD0000">""</span><span style="color: #007700">;<br />&nbsp;}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de Insert(Ekleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;ekle&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;haberler&nbsp;(baslik,icerik)&nbsp;VALUES('başlığımız',&nbsp;'iceriğimiz')"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;ekle</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Eklendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da Insert(Ekleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;ekle&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">query</span><span style="color: #007700">(</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;haberler&nbsp;(baslik,icerik)&nbsp;VALUES('başlığımız',&nbsp;'iceriğimiz')"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;ekle</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Eklendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
ve ya<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;ekle</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">prepare</span><span style="color: #007700">(</span><span style="color: #DD0000">"INSERT&nbsp;INTO&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;?,&nbsp;icerik=&nbsp;?"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">&#36;ekle2&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">execute</span><span style="color: #007700">(array(</span><span style="color: #DD0000">"başlığımız"</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"iceriğimiz"</span><span style="color: #007700">));<br />if&nbsp;(</span><span style="color: #0000BB">&#36;ekle2</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Eklendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de Update(Güncelleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;update&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"UPDATE&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;'baslığımız&nbsp;güncellendi'"</span><span style="color: #007700">);<br />if&nbsp;(&nbsp;</span><span style="color: #0000BB">&#36;update&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Güncellendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
PDO'da Update(Güncelleme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;update&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">query</span><span style="color: #007700">(</span><span style="color: #DD0000">"UPDATE&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;'baslığımız&nbsp;güncellendi'"</span><span style="color: #007700">);<br />if&nbsp;(&nbsp;</span><span style="color: #0000BB">&#36;update&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Güncellendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
ve ya<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br />&#36;update&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">prepare</span><span style="color: #007700">(</span><span style="color: #DD0000">"UPDATE&nbsp;haberler&nbsp;SET&nbsp;baslik=&nbsp;:baslikk"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">&#36;update2&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;query</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">execute</span><span style="color: #007700">(array(</span><span style="color: #DD0000">"baslikk"&nbsp;</span><span style="color: #007700">=&gt;&nbsp;</span><span style="color: #DD0000">"baslığımız&nbsp;güncellendi"</span><span style="color: #007700">));<br />if&nbsp;(&nbsp;</span><span style="color: #0000BB">&#36;update2&nbsp;</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"Haberiniz&nbsp;Güncellendi."</span><span style="color: #007700">;<br />}<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Mysql'de DELETE(Silme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&#36;delete&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"DELETE&nbsp;FROM&nbsp;haberler"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;delete</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Bütün&nbsp;Haberler&nbsp;Silindi."</span><span style="color: #007700">;<br />}&nbsp;<br /></span></code></div></div></div>
<br />
PDO'da DELETE(Silme) İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&#36;delete&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">exec</span><span style="color: #007700">(</span><span style="color: #DD0000">"DELETE&nbsp;FROM&nbsp;uyeler"</span><span style="color: #007700">);<br />if(</span><span style="color: #0000BB">&#36;delete</span><span style="color: #007700">){<br />echo&nbsp;</span><span style="color: #DD0000">"Bütün&nbsp;Haberler&nbsp;Silindi."</span><span style="color: #007700">;<br />}&nbsp;<br /></span></code></div></div></div>
<br />
<br />
Mysql'de Bağlantı Sonlandırma İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">mysql_close</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;db</span><span style="color: #007700">);&nbsp;<br /></span></code></div></div></div>
<br />
PDO'da Bağlantı Sonlandırma İşlemi;<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&#36;db&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">null</span><span style="color: #007700">;&nbsp;<br /></span></code></div></div></div>
<br />
PDO gözünüze zor gözükebilir ki zamanında benimde öyleydi fakat yavaş yavaş ısındım bir göz atarsanız nerdeyse mysql ile aynı olduğunu anlarsınız ancak try catch yapısı sizin aklınızı karıştırabilir ki benimde aklımı karıştırdı fakat pekde zor değil mantığı anlarsanız gerisi kolay iyi forumlar dilerim. umarım yardımcı olmuştur...<br />
<br />
Ayrıca Buradan da PDO ile ilgili Benim Kaçırdığım Bilgileri Öğrenebilirsiniz.<br />
<br />
<blockquote><cite>Alıntı:</cite><a href="http://php.net/pdo" target="_blank">http://php.net/pdo</a></blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Php Yardım]]></title>
			<link>https://mybbdepo.com/php-yardim-20276-konusu.html</link>
			<pubDate>Fri, 06 Feb 2015 20:57:30 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-yardim-20276-konusu.html</guid>
			<description><![CDATA[<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>Parse error: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '&#36;' in /var/customers/webs/ni358547_1/inc/functions.php on line 16</code></div></div>
<br />
Bu Hatayı Nasıl Çözebilirim Multi Forum Scripti Yükledim?]]></description>
			<content:encoded><![CDATA[<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>Parse error: syntax error, unexpected T_LNUMBER, expecting T_VARIABLE or '&#36;' in /var/customers/webs/ni358547_1/inc/functions.php on line 16</code></div></div>
<br />
Bu Hatayı Nasıl Çözebilirim Multi Forum Scripti Yükledim?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Basit Resim Yükleme [PHP]]]></title>
			<link>https://mybbdepo.com/basit-resim-yukleme-php-konusu.html</link>
			<pubDate>Thu, 18 Dec 2014 22:16:49 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/basit-resim-yukleme-php-konusu.html</guid>
			<description><![CDATA[PHP ile küçük ve basit bir resim yükleme scripti yaptım <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" />. Aslında script de denilemez. php.netin kodları zaten. Yalnızca düzenleme <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" />.<br />
Demo:<br />
<a href="http://hadiyukle.com/basitresim/index.php" target="_blank">http://hadiyukle.com/basitresim/index.php</a><br />
<br />
İndir: <br />
<a href="http://www.mediafire.com/download/zbbr65a2l1o3w7p/Basit+Resim+Yukleme+Scripti%282%29.rar" target="_blank">http://www.mediafire.com/download/zbbr65...282%29.rar</a>]]></description>
			<content:encoded><![CDATA[PHP ile küçük ve basit bir resim yükleme scripti yaptım <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" />. Aslında script de denilemez. php.netin kodları zaten. Yalnızca düzenleme <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" />.<br />
Demo:<br />
<a href="http://hadiyukle.com/basitresim/index.php" target="_blank">http://hadiyukle.com/basitresim/index.php</a><br />
<br />
İndir: <br />
<a href="http://www.mediafire.com/download/zbbr65a2l1o3w7p/Basit+Resim+Yukleme+Scripti%282%29.rar" target="_blank">http://www.mediafire.com/download/zbbr65...282%29.rar</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Tema Yapabilecek]]></title>
			<link>https://mybbdepo.com/tema-yapabilecek-konusu.html</link>
			<pubDate>Tue, 15 Apr 2014 16:52:48 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/tema-yapabilecek-konusu.html</guid>
			<description><![CDATA[<div align="center"><img src="http://i.imgur.com/hwGuYQg.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /></div>
<br />
bu tasarımı kullanarak tema yapabilecek biri varsa site adresi ile bir fiyatta anlaşıp yaptırayım <img src="https://mybbdepo.com/images/smilies/acik-agizli-gulumseme.gif" alt="Açık Ağızlı Gülümseme" title="Açık Ağızlı Gülümseme" class="smilie smilie_4" />]]></description>
			<content:encoded><![CDATA[<div align="center"><img src="http://i.imgur.com/hwGuYQg.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /></div>
<br />
bu tasarımı kullanarak tema yapabilecek biri varsa site adresi ile bir fiyatta anlaşıp yaptırayım <img src="https://mybbdepo.com/images/smilies/acik-agizli-gulumseme.gif" alt="Açık Ağızlı Gülümseme" title="Açık Ağızlı Gülümseme" class="smilie smilie_4" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HTACCESS Resim Çalmayı Engellemek]]></title>
			<link>https://mybbdepo.com/htaccess-resim-calmayi-engellemek-konusu.html</link>
			<pubDate>Tue, 08 Apr 2014 15:09:18 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/htaccess-resim-calmayi-engellemek-konusu.html</guid>
			<description><![CDATA[<span style="font-size: medium;"><span style="font-weight: bold;">Sitenizdeki resimlerin çalınıp başka bir sitede kullanılmasını engellemek istiyorsanız ve eğer çalınırsa gösterilecekresim.gif yazan yerekendi resminizi ekleyin..htaccess dosyasına bu kodu yazın<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">RewriteEngine&nbsp;on<br />RewriteCond&nbsp;</span><span style="color: #007700">%{</span><span style="color: #0000BB">HTTP_REFERER</span><span style="color: #007700">}&nbsp;!^</span><span style="color: #0000BB">&#36;RewriteCond&nbsp;</span><span style="color: #007700">%{</span><span style="color: #0000BB">HTTP_REFERER</span><span style="color: #007700">}&nbsp;!^</span><span style="color: #0000BB">http</span><span style="color: #007700">:</span><span style="color: #FF8000">//(www&#092;.)?alanadınız.com/.*&#36;&nbsp;[NC]<br />#RewriteRule&nbsp;&#092;.(gif|jpg)&#36;&nbsp;–&nbsp;[F]<br />#RewriteRule&nbsp;&#092;.(gif|jpg)&#36;&nbsp;http://www.siteismi.com/gösterilecekresim.gif[R,L]&nbsp;<br /></span></code></div></div></div>
</span></span><br />
<span style="color: #FF0000;">Bi MYBB Sitesi Vardı İsmini Söylemiyeceğim Ordan Aklıma Geldi <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" /></span><br />
<span style="color: #DCDCDC;"><div align="right">Alıntıdır phpdili.blogspot.com.tr</div></span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: medium;"><span style="font-weight: bold;">Sitenizdeki resimlerin çalınıp başka bir sitede kullanılmasını engellemek istiyorsanız ve eğer çalınırsa gösterilecekresim.gif yazan yerekendi resminizi ekleyin..htaccess dosyasına bu kodu yazın<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">RewriteEngine&nbsp;on<br />RewriteCond&nbsp;</span><span style="color: #007700">%{</span><span style="color: #0000BB">HTTP_REFERER</span><span style="color: #007700">}&nbsp;!^</span><span style="color: #0000BB">&#36;RewriteCond&nbsp;</span><span style="color: #007700">%{</span><span style="color: #0000BB">HTTP_REFERER</span><span style="color: #007700">}&nbsp;!^</span><span style="color: #0000BB">http</span><span style="color: #007700">:</span><span style="color: #FF8000">//(www&#092;.)?alanadınız.com/.*&#36;&nbsp;[NC]<br />#RewriteRule&nbsp;&#092;.(gif|jpg)&#36;&nbsp;–&nbsp;[F]<br />#RewriteRule&nbsp;&#092;.(gif|jpg)&#36;&nbsp;http://www.siteismi.com/gösterilecekresim.gif[R,L]&nbsp;<br /></span></code></div></div></div>
</span></span><br />
<span style="color: #FF0000;">Bi MYBB Sitesi Vardı İsmini Söylemiyeceğim Ordan Aklıma Geldi <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" /></span><br />
<span style="color: #DCDCDC;"><div align="right">Alıntıdır phpdili.blogspot.com.tr</div></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Satış Sitesi]]></title>
			<link>https://mybbdepo.com/satis-sitesi-konusu.html</link>
			<pubDate>Wed, 19 Mar 2014 19:14:35 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/satis-sitesi-konusu.html</guid>
			<description><![CDATA[abilerim ben bi site açıp orda satış yapmak istiyorum suanlık basit lazım mesela ;<br />
<br />
ben girecem siteye konu açacam konuda paypal hesabımı proje dosyasını up edecem sonra konu açılacak sitede satın almak isteyen satın ala basınca paypala aktaracan para ödenince indirmeye başlayacak sonra mesela indirme linkine bida basınca tekrar aypala atacak ve indirince download edecek bunu yapabilecek varmı acaba]]></description>
			<content:encoded><![CDATA[abilerim ben bi site açıp orda satış yapmak istiyorum suanlık basit lazım mesela ;<br />
<br />
ben girecem siteye konu açacam konuda paypal hesabımı proje dosyasını up edecem sonra konu açılacak sitede satın almak isteyen satın ala basınca paypala aktaracan para ödenince indirmeye başlayacak sonra mesela indirme linkine bida basınca tekrar aypala atacak ve indirince download edecek bunu yapabilecek varmı acaba]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP ile bunu nasıl yapabilirim ?]]></title>
			<link>https://mybbdepo.com/php-ile-bunu-nasil-yapabilirim-konusu.html</link>
			<pubDate>Wed, 12 Mar 2014 19:48:10 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-ile-bunu-nasil-yapabilirim-konusu.html</guid>
			<description><![CDATA[Merhaba arkadaşlar. Ufak bir konuda yardımınız lazım.<br />
<br />
2 tane select kısmı olacak, birisinde ilçe diğerinde de mahalle kısmı olacak. İlçeyi seçince alltaki kutuda ilçeye göre mahalle seçme olacak. Seçimler tamamlanınca da altta belirttiğim içerik çıkacak. PHP bilgim olmadığı için yapamadım, birisi ufak bir örnekte yapabilir mi ? Düzenlemelerini yaparım..<br />
<br />
İlk baştaki hali: [Seçiniz] - [Seçiniz](ilçe seçmeden bu mahalle kısmında sadece seçiniz olacak)<br />
<br />
İlçe seçilmiş hali: [Keşap] - [Seçiniz]<br />
<br />
İlçe ve mahalle seçilip sonuçlanmış hali: [Keşap] - [Gedikkaya Mah.]<br />
Örnek1 / 05350123456]]></description>
			<content:encoded><![CDATA[Merhaba arkadaşlar. Ufak bir konuda yardımınız lazım.<br />
<br />
2 tane select kısmı olacak, birisinde ilçe diğerinde de mahalle kısmı olacak. İlçeyi seçince alltaki kutuda ilçeye göre mahalle seçme olacak. Seçimler tamamlanınca da altta belirttiğim içerik çıkacak. PHP bilgim olmadığı için yapamadım, birisi ufak bir örnekte yapabilir mi ? Düzenlemelerini yaparım..<br />
<br />
İlk baştaki hali: [Seçiniz] - [Seçiniz](ilçe seçmeden bu mahalle kısmında sadece seçiniz olacak)<br />
<br />
İlçe seçilmiş hali: [Keşap] - [Seçiniz]<br />
<br />
İlçe ve mahalle seçilip sonuçlanmış hali: [Keşap] - [Gedikkaya Mah.]<br />
Örnek1 / 05350123456]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Pro oyun sitesi yapacak arkadaşlar bakabilirmi(Ücretli)]]></title>
			<link>https://mybbdepo.com/pro-oyun-sitesi-yapacak-arkadaslar-bakabilirmi-ucretli-konusu.html</link>
			<pubDate>Mon, 10 Feb 2014 17:56:29 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/pro-oyun-sitesi-yapacak-arkadaslar-bakabilirmi-ucretli-konusu.html</guid>
			<description><![CDATA[Sitede oyun fotolarının olduğu galeri kısmı oyunu indirme bölümü eposta onaylı üyelik admin paneli vb normal oyun sitelerinde olan özelliklere sahip bir oyun sitesi yapacak arkadaşlar konuya ücretlerini yazabilirlermi.<br />
<br />
Not : Site oyun bitince alınacak(min 1 ay, max 3 ay)]]></description>
			<content:encoded><![CDATA[Sitede oyun fotolarının olduğu galeri kısmı oyunu indirme bölümü eposta onaylı üyelik admin paneli vb normal oyun sitelerinde olan özelliklere sahip bir oyun sitesi yapacak arkadaşlar konuya ücretlerini yazabilirlermi.<br />
<br />
Not : Site oyun bitince alınacak(min 1 ay, max 3 ay)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP Yardim]]></title>
			<link>https://mybbdepo.com/php-yardim-konusu.html</link>
			<pubDate>Thu, 05 Dec 2013 20:38:00 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-yardim-konusu.html</guid>
			<description><![CDATA[Arkadaşlar BunU php dilinde yapabilirmyiz yapabilecek arkadaşlar varmı <br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>http://kayit.etu.edu.tr/Ders/_Ders_prg_start.php</code></div></div>
]]></description>
			<content:encoded><![CDATA[Arkadaşlar BunU php dilinde yapabilirmyiz yapabilecek arkadaşlar varmı <br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>http://kayit.etu.edu.tr/Ders/_Ders_prg_start.php</code></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Para Verdikten Sonra Download Edecek ..]]></title>
			<link>https://mybbdepo.com/para-verdikten-sonra-download-edecek-konusu.html</link>
			<pubDate>Thu, 05 Dec 2013 19:11:22 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/para-verdikten-sonra-download-edecek-konusu.html</guid>
			<description><![CDATA[Para Verdikten Sonra Download Edecek ama linkide saklicak yani başkası indiremiyecek acaba paypalda varmı buözellik yoksa böle birşey varmı.]]></description>
			<content:encoded><![CDATA[Para Verdikten Sonra Download Edecek ama linkide saklicak yani başkası indiremiyecek acaba paypalda varmı buözellik yoksa böle birşey varmı.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Oyunum İçin Php Yardım Edin]]></title>
			<link>https://mybbdepo.com/oyunum-icin-php-yardim-edin-konusu.html</link>
			<pubDate>Fri, 08 Nov 2013 17:45:22 +0200</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/oyunum-icin-php-yardim-edin-konusu.html</guid>
			<description><![CDATA[<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>&lt;?<br />
<br />
// CONNECTIONS =========================================================<br />
<br />
&#36;host = "mysql.hostinger.web.tr"; //put your host here<br />
<br />
&#36;user = "u882958212_kk"; //in general is root<br />
<br />
&#36;password = "00qq00qq"; //use your password here<br />
<br />
&#36;dbname = "u882958212_kk"; //your database<br />
<br />
mysql_connect(&#36;host, &#36;user, &#36;password) or die("Cant connect into database");<br />
<br />
mysql_select_db(&#36;dbname)or die("Cant connect into database");<br />
<br />
// =============================================================================<br />
<br />
// PROTECT AGAINST SQL INJECTION and CONVERT PASSWORD INTO MD5 formats<br />
<br />
function anti_injection_login_senha(&#36;sql, &#36;formUse = true)<br />
<br />
{<br />
<br />
&#36;sql = preg_replace("/(from|select|insert|delete|where|drop table|show tables|,|'|#|&#92;*|--|&#92;&#92;&#92;&#92;)/i","",&#36;sql);<br />
<br />
&#36;sql = trim(&#36;sql);<br />
<br />
&#36;sql = strip_tags(&#36;sql);<br />
<br />
if(!&#36;formUse || !get_magic_quotes_gpc())<br />
<br />
&nbsp;&nbsp;&#36;sql = addslashes(&#36;sql);<br />
<br />
&nbsp;&nbsp;&#36;sql = (trim(&#36;sql));<br />
<br />
return &#36;sql;<br />
<br />
}<br />
<br />
// THIS ONE IS JUST FOR THE NICKNAME PROTECTION AGAINST SQL INJECTION<br />
<br />
function anti_injection_login(&#36;sql, &#36;formUse = true)<br />
<br />
{<br />
<br />
&#36;sql = preg_replace("/(from|select|insert|delete|where|drop table|show tables|,|'|#|&#92;*|--|&#92;&#92;&#92;&#92;)/i","",&#36;sql);<br />
<br />
&#36;sql = trim(&#36;sql);<br />
<br />
&#36;sql = strip_tags(&#36;sql);<br />
<br />
if(!&#36;formUse || !get_magic_quotes_gpc())<br />
<br />
&nbsp;&nbsp;&#36;sql = addslashes(&#36;sql);<br />
<br />
return &#36;sql;<br />
<br />
}<br />
<br />
// =============================================================================<br />
<br />
&#36;unityHash = anti_injection_login(&#36;_POST["myform_hash"]);<br />
<br />
&#36;phpHash = "hashcode"; // same code in here as in your Unity game<br />
<br />
 <br />
<br />
&#36;nick = anti_injection_login(&#36;_POST["myform_nick"]); //I use that function to protect against SQL injection<br />
<br />
&#36;pass = anti_injection_login_senha(&#36;_POST["myform_pass"]);<br />
<br />
&#36;Og = anti_injection_login(&#36;_POST["myform_Og"]);<br />
<br />
&#36;Level = anti_injection_login(&#36;_POST["myform_Level"]);<br />
<br />
&#36;Exp = anti_injection_login(&#36;_POST["myform_Exp"]);<br />
<br />
mysql_query("INSERT INTO scores(level,og,exp)VALUES('&#36;Level','&#36;Og','&#36;Exp')");<br />
<br />
// Close mySQL Connection<br />
<br />
mysql_close();<br />
<br />
?&gt;</code></div></div>
<br />
Şu kod ile oyundaki bilgileri alıp databaseye atio çok güzel fakat attıkları her şeyi yeniden oluşturuyo ben oluşmuş bi kullanıcının level değişkenini değişmek istiyom acaba yardım edebilecek varmı <img src="https://mybbdepo.com/images/smilies/uzgun.gif" alt="üzgün" title="üzgün" class="smilie smilie_8" />]]></description>
			<content:encoded><![CDATA[<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>&lt;?<br />
<br />
// CONNECTIONS =========================================================<br />
<br />
&#36;host = "mysql.hostinger.web.tr"; //put your host here<br />
<br />
&#36;user = "u882958212_kk"; //in general is root<br />
<br />
&#36;password = "00qq00qq"; //use your password here<br />
<br />
&#36;dbname = "u882958212_kk"; //your database<br />
<br />
mysql_connect(&#36;host, &#36;user, &#36;password) or die("Cant connect into database");<br />
<br />
mysql_select_db(&#36;dbname)or die("Cant connect into database");<br />
<br />
// =============================================================================<br />
<br />
// PROTECT AGAINST SQL INJECTION and CONVERT PASSWORD INTO MD5 formats<br />
<br />
function anti_injection_login_senha(&#36;sql, &#36;formUse = true)<br />
<br />
{<br />
<br />
&#36;sql = preg_replace("/(from|select|insert|delete|where|drop table|show tables|,|'|#|&#92;*|--|&#92;&#92;&#92;&#92;)/i","",&#36;sql);<br />
<br />
&#36;sql = trim(&#36;sql);<br />
<br />
&#36;sql = strip_tags(&#36;sql);<br />
<br />
if(!&#36;formUse || !get_magic_quotes_gpc())<br />
<br />
&nbsp;&nbsp;&#36;sql = addslashes(&#36;sql);<br />
<br />
&nbsp;&nbsp;&#36;sql = (trim(&#36;sql));<br />
<br />
return &#36;sql;<br />
<br />
}<br />
<br />
// THIS ONE IS JUST FOR THE NICKNAME PROTECTION AGAINST SQL INJECTION<br />
<br />
function anti_injection_login(&#36;sql, &#36;formUse = true)<br />
<br />
{<br />
<br />
&#36;sql = preg_replace("/(from|select|insert|delete|where|drop table|show tables|,|'|#|&#92;*|--|&#92;&#92;&#92;&#92;)/i","",&#36;sql);<br />
<br />
&#36;sql = trim(&#36;sql);<br />
<br />
&#36;sql = strip_tags(&#36;sql);<br />
<br />
if(!&#36;formUse || !get_magic_quotes_gpc())<br />
<br />
&nbsp;&nbsp;&#36;sql = addslashes(&#36;sql);<br />
<br />
return &#36;sql;<br />
<br />
}<br />
<br />
// =============================================================================<br />
<br />
&#36;unityHash = anti_injection_login(&#36;_POST["myform_hash"]);<br />
<br />
&#36;phpHash = "hashcode"; // same code in here as in your Unity game<br />
<br />
 <br />
<br />
&#36;nick = anti_injection_login(&#36;_POST["myform_nick"]); //I use that function to protect against SQL injection<br />
<br />
&#36;pass = anti_injection_login_senha(&#36;_POST["myform_pass"]);<br />
<br />
&#36;Og = anti_injection_login(&#36;_POST["myform_Og"]);<br />
<br />
&#36;Level = anti_injection_login(&#36;_POST["myform_Level"]);<br />
<br />
&#36;Exp = anti_injection_login(&#36;_POST["myform_Exp"]);<br />
<br />
mysql_query("INSERT INTO scores(level,og,exp)VALUES('&#36;Level','&#36;Og','&#36;Exp')");<br />
<br />
// Close mySQL Connection<br />
<br />
mysql_close();<br />
<br />
?&gt;</code></div></div>
<br />
Şu kod ile oyundaki bilgileri alıp databaseye atio çok güzel fakat attıkları her şeyi yeniden oluşturuyo ben oluşmuş bi kullanıcının level değişkenini değişmek istiyom acaba yardım edebilecek varmı <img src="https://mybbdepo.com/images/smilies/uzgun.gif" alt="üzgün" title="üzgün" class="smilie smilie_8" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Head Bakımdayız Scripti | TaaRRuz]]></title>
			<link>https://mybbdepo.com/head-bakimdayiz-scripti-taarruz-konusu.html</link>
			<pubDate>Tue, 13 Aug 2013 18:47:04 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/head-bakimdayiz-scripti-taarruz-konusu.html</guid>
			<description><![CDATA[<div align="center"><span style="font-weight: bold;"><span style="color: #FF0000;">Scriptin Adı:</span>Head Bakımdayız Scripti<br />
<span style="color: #9400D3;">Scriptin Programlama Dili:</span>PHP<br />
<span style="color: #FFA500;">Scriptin Yapımcısı:</span>TaaRRuz</span><br />
<br />
<span style="font-weight: bold;"><span style="font-size: medium;"><span style="color: #32CD32;">Ekran Görütüleri;</span></span></span><br />
<br />
<img src="http://st.10tl.net/tema/taarruz/images/head_b_s/1.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<img src="http://st.10tl.net/tema/taarruz/images/head_b_s/2.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<img src="http://st.10tl.net/tema/taarruz/images/head_b_s/3.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<span style="font-size: large;"><span style="color: #FF0000;"><span style="font-weight: bold;">İndir:</span></span></span><br />
<br />
<a href="https://hotfile.com/dl/239410211/9735958/HEAD_Bakm_Scripti_TaaRRuz.rar.html" target="_blank">https://hotfile.com/dl/239410211/9735958...z.rar.html</a><br />
<br />
<a href="http://st.10tl.net/tema/taarruz/images/head_b_s/HEAD_Bak%C4%B1m_Scripti_TaaRRuz.rar" target="_blank"><span style="font-size: medium;"><span style="color: #FF0000;"><span style="font-weight: bold;">ALTERNATİF Olarak İndirmek İçin Tıklayınız.</span></span></span></a></div>
<br />
<br />
<span style="color: #4682B4;"><span style="font-size: medium;"><span style="font-weight: bold;">NOT:Admin Paneli giriş bilgileri kullanıcı adı:admin şifre:admin'dir.Scriptin içinde admin klasöründeki kontrol.php dosyasından değiştirebilirsiniz.</span></span></span>]]></description>
			<content:encoded><![CDATA[<div align="center"><span style="font-weight: bold;"><span style="color: #FF0000;">Scriptin Adı:</span>Head Bakımdayız Scripti<br />
<span style="color: #9400D3;">Scriptin Programlama Dili:</span>PHP<br />
<span style="color: #FFA500;">Scriptin Yapımcısı:</span>TaaRRuz</span><br />
<br />
<span style="font-weight: bold;"><span style="font-size: medium;"><span style="color: #32CD32;">Ekran Görütüleri;</span></span></span><br />
<br />
<img src="http://st.10tl.net/tema/taarruz/images/head_b_s/1.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<img src="http://st.10tl.net/tema/taarruz/images/head_b_s/2.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<img src="http://st.10tl.net/tema/taarruz/images/head_b_s/3.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<span style="font-size: large;"><span style="color: #FF0000;"><span style="font-weight: bold;">İndir:</span></span></span><br />
<br />
<a href="https://hotfile.com/dl/239410211/9735958/HEAD_Bakm_Scripti_TaaRRuz.rar.html" target="_blank">https://hotfile.com/dl/239410211/9735958...z.rar.html</a><br />
<br />
<a href="http://st.10tl.net/tema/taarruz/images/head_b_s/HEAD_Bak%C4%B1m_Scripti_TaaRRuz.rar" target="_blank"><span style="font-size: medium;"><span style="color: #FF0000;"><span style="font-weight: bold;">ALTERNATİF Olarak İndirmek İçin Tıklayınız.</span></span></span></a></div>
<br />
<br />
<span style="color: #4682B4;"><span style="font-size: medium;"><span style="font-weight: bold;">NOT:Admin Paneli giriş bilgileri kullanıcı adı:admin şifre:admin'dir.Scriptin içinde admin klasöründeki kontrol.php dosyasından değiştirebilirsiniz.</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Php Kırılması İmkansız Şifre Algoritması]]></title>
			<link>https://mybbdepo.com/php-kirilmasi-imkansiz-sifre-algoritmasi-konusu.html</link>
			<pubDate>Wed, 17 Jul 2013 21:49:07 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-kirilmasi-imkansiz-sifre-algoritmasi-konusu.html</guid>
			<description><![CDATA[Selamun aleykum arkadaşlar. Benim kendi yazığım sistemlerde bol bol kullandığım farklı, basit ama etkili bir şifreleme algoritmasını gösterecem sizlere.<br />
<br />
Genelde sistem yazan çoğu yazılımcı(!) üyelerin veya adminin şifresini direk veritabanına kaydeder. Eğer yaptığı site 1 kere hacklenen biri ise bi md5 ler sonra veritabanına kaydeder. Ama bilmez; <span style="font-style: italic;"><span style="font-weight: bold;">kırılmayacak md5 yoktur</span></span> <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" /><br />
<br />
Gel gelelim benim yöntemime. Öncelikle şifremizi aldık. Şifremiz 123456 olsun.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?<br />&#36;sifre&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"123456"</span><span style="color: #007700">;&nbsp;</span><span style="color: #FF8000">//&nbsp;şifremiz&nbsp;123456<br /></span><span style="color: #0000BB">&#36;sifrele&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">sha1</span><span style="color: #007700">(</span><span style="color: #0000BB">base64_encode</span><span style="color: #007700">(</span><span style="color: #0000BB">md5</span><span style="color: #007700">(</span><span style="color: #0000BB">base64_encode</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;sifre</span><span style="color: #007700">))));<br /></span><span style="color: #FF8000">//&nbsp;çıktı&nbsp;:&nbsp;5e98f8f98e228cc26b1b1ad97bc5014156053728<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
&#36;sifrele diye bir değişken tanımladık ve o değişkenin değerini aldığımız şifreyi ilk önce base64, sonra md5, sonra tekrar base64, en son oalrak sha1 ile şifreledik. Siz istediğiniz kadar şifreleyebilirsiniz, size kalmış. Önemli olan en son şifrelemeyi sha1 ile yapın.<br />
<br />
Asıl iş sha1 de çünkü. Şöyle açıklayayım; sha1 ile md5 birbirlerine aşırı benzerler şifreleme yapısı olarak. İkiside küçük harfler ve rakamlardan oluşur. Tek farkı sha1 40 karakterdir md5 32. Asıl aldatmacamız burası işte.Şifremizi güvenlik amacı ile birkaç kez çeşitli fonksiyonlar ile şifreledik. Son olarak sha1 ile şifreledik. Şimdi elde ettiğimiz 40 karakterlik şifremizin hehangi bir 32 karakterlik kısmını alalım.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?<br />&#36;sonuc&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">substr</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;sifrele</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">5</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">32</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">//&nbsp;çıktı&nbsp;:&nbsp;8f98e228cc26b1b1ad97bc5014156053<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Burada substr fonksiyonu ile elde ettiğimiz 40 karakterlik sha1 değerinin 5. karakterinden başlayıp toplam 32 karakter kesmesini söyledik. Ben 5′ten başlamasını rastgele söyledim. siz istediğim 8′e kadar olan herhangi bi rakandan başlatabilirsiniz. Size kalmış. Elde ettiğimiz son değer 8f98e228cc26b1b1ad97bc5014156053. Yani 32 karakterli bir şifre; tıpkı md5 gibi değil mi<br />
<br />
Bir heykır(!)’ın veritabanınıza ulaştığını varsayın. Vebu şekilde şifrelediğiniz şifrenizi gördü. Bktı 32 karakter ve şifreleme yapısı md5 ile uyuşuyor. Hemen atlayacak sazan gibi md5 sanacak. Başta demiştim ya; kırılmayacak md5 yoktur diye. Eğer siz onun için büyük hedefseniz gece gündüz kırmak için çabalayacak. Ama nafile; çünkü şifremiz md5 değil.<br />
<br />
Alın size geridönüşümü olmayan <span style="font-weight: bold;">kırılması imkansız bir şifre</span>. Aynı zamanda <span style="font-style: italic;">hacker’i aldatmaya yönelik bir şifre.</span><br />
<br />
<span style="color: #FF0000;">Alıntıdır.(<span style="font-style: italic;">omercitak.net</span>)</span>]]></description>
			<content:encoded><![CDATA[Selamun aleykum arkadaşlar. Benim kendi yazığım sistemlerde bol bol kullandığım farklı, basit ama etkili bir şifreleme algoritmasını gösterecem sizlere.<br />
<br />
Genelde sistem yazan çoğu yazılımcı(!) üyelerin veya adminin şifresini direk veritabanına kaydeder. Eğer yaptığı site 1 kere hacklenen biri ise bi md5 ler sonra veritabanına kaydeder. Ama bilmez; <span style="font-style: italic;"><span style="font-weight: bold;">kırılmayacak md5 yoktur</span></span> <img src="https://mybbdepo.com/images/smilies/gulumseme.gif" alt="Gülümseme" title="Gülümseme" class="smilie smilie_1" /><br />
<br />
Gel gelelim benim yöntemime. Öncelikle şifremizi aldık. Şifremiz 123456 olsun.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?<br />&#36;sifre&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"123456"</span><span style="color: #007700">;&nbsp;</span><span style="color: #FF8000">//&nbsp;şifremiz&nbsp;123456<br /></span><span style="color: #0000BB">&#36;sifrele&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">sha1</span><span style="color: #007700">(</span><span style="color: #0000BB">base64_encode</span><span style="color: #007700">(</span><span style="color: #0000BB">md5</span><span style="color: #007700">(</span><span style="color: #0000BB">base64_encode</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;sifre</span><span style="color: #007700">))));<br /></span><span style="color: #FF8000">//&nbsp;çıktı&nbsp;:&nbsp;5e98f8f98e228cc26b1b1ad97bc5014156053728<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
&#36;sifrele diye bir değişken tanımladık ve o değişkenin değerini aldığımız şifreyi ilk önce base64, sonra md5, sonra tekrar base64, en son oalrak sha1 ile şifreledik. Siz istediğiniz kadar şifreleyebilirsiniz, size kalmış. Önemli olan en son şifrelemeyi sha1 ile yapın.<br />
<br />
Asıl iş sha1 de çünkü. Şöyle açıklayayım; sha1 ile md5 birbirlerine aşırı benzerler şifreleme yapısı olarak. İkiside küçük harfler ve rakamlardan oluşur. Tek farkı sha1 40 karakterdir md5 32. Asıl aldatmacamız burası işte.Şifremizi güvenlik amacı ile birkaç kez çeşitli fonksiyonlar ile şifreledik. Son olarak sha1 ile şifreledik. Şimdi elde ettiğimiz 40 karakterlik şifremizin hehangi bir 32 karakterlik kısmını alalım.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Kod:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?<br />&#36;sonuc&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">substr</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;sifrele</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">5</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">32</span><span style="color: #007700">);<br /></span><span style="color: #FF8000">//&nbsp;çıktı&nbsp;:&nbsp;8f98e228cc26b1b1ad97bc5014156053<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
<br />
Burada substr fonksiyonu ile elde ettiğimiz 40 karakterlik sha1 değerinin 5. karakterinden başlayıp toplam 32 karakter kesmesini söyledik. Ben 5′ten başlamasını rastgele söyledim. siz istediğim 8′e kadar olan herhangi bi rakandan başlatabilirsiniz. Size kalmış. Elde ettiğimiz son değer 8f98e228cc26b1b1ad97bc5014156053. Yani 32 karakterli bir şifre; tıpkı md5 gibi değil mi<br />
<br />
Bir heykır(!)’ın veritabanınıza ulaştığını varsayın. Vebu şekilde şifrelediğiniz şifrenizi gördü. Bktı 32 karakter ve şifreleme yapısı md5 ile uyuşuyor. Hemen atlayacak sazan gibi md5 sanacak. Başta demiştim ya; kırılmayacak md5 yoktur diye. Eğer siz onun için büyük hedefseniz gece gündüz kırmak için çabalayacak. Ama nafile; çünkü şifremiz md5 değil.<br />
<br />
Alın size geridönüşümü olmayan <span style="font-weight: bold;">kırılması imkansız bir şifre</span>. Aynı zamanda <span style="font-style: italic;">hacker’i aldatmaya yönelik bir şifre.</span><br />
<br />
<span style="color: #FF0000;">Alıntıdır.(<span style="font-style: italic;">omercitak.net</span>)</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Php Pagerank Sorgulama Scripti]]></title>
			<link>https://mybbdepo.com/php-pagerank-sorgulama-scripti-konusu.html</link>
			<pubDate>Sat, 13 Jul 2013 23:40:27 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/php-pagerank-sorgulama-scripti-konusu.html</guid>
			<description><![CDATA[Merhaba arkadaşlar bu konumuzda sizler için php’de kodladığımız pagerank sorgulama scriptinden bahsedeceğiz ve bu scripti paylaşacağız.<br />
<br />
<span style="font-weight: bold;">Pagerank Sorgulama Scripti</span><br />
<br />
Google’ın pagerank algoritmasını sorgulayan bu scriptimiz sizler için geliştirildi ve internette herhangi bir kopyası bulunmamaktadır.<br />
<br />
Scriptimizin birçok özelliği var bu özellikleri sıralayacak olursak,<br />
<br />
<span style="font-weight: bold;">Script Özellikleri</span><ul>
<li><img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Pagerank Sorgulama<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Alexa Dünya ve Ülke Sıralaması<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Dmoz Kayıt Durumu<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Alexa Backlink Sayısı<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Alexa Yıldızı Sayısı<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Yahoo Backlink<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Reklam alanları<br />
</li></ul>
yazılımımızda bu özellikler mevcuttur kaynak kodları ile paylaştığımız için geliştirmeye açık bir scripttir. <span style="font-weight: bold;">Spam sorgulamalar için spam koruması mevcuttur.</span><br />
<br />
Script <span style="font-weight: bold;">Php</span> Tabanlıdır.<br />
<br />
<span style="color: #800000;"><span style="font-weight: bold;"><br />
Scriptin Görünümü ;</span></span><br />
<br />
<img src="http://o1307.hizliresim.com/1c/f/q7uss.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<span style="color: #800000;"><span style="font-weight: bold;">Demo Linki ;</span></span><br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>webanaliz.forumhaz.com</code></div></div>
<br />
<span style="color: #FF0000;"><span style="font-weight: bold;">Rar Şifresi :</span></span><span style="font-weight: bold;"> mybb.com.tr</span><br />
<br />
<span style="color: #FF0000;"><span style="font-size: medium;"><span style="font-weight: bold;"><br />
İndirme Linki ;</span></span></span><br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>http://rapidshare.com/files/3587125018/Php%20Pagerank%20Sorgulama%20Scripti.rar</code></div></div>
<br />
<span style="font-weight: bold;">Not :</span> Sizden tek beklentimiz  konunun altına yorum atmanızdır bu sayede konumuz güncel kalacaktır.<br />
(alıntıdır)]]></description>
			<content:encoded><![CDATA[Merhaba arkadaşlar bu konumuzda sizler için php’de kodladığımız pagerank sorgulama scriptinden bahsedeceğiz ve bu scripti paylaşacağız.<br />
<br />
<span style="font-weight: bold;">Pagerank Sorgulama Scripti</span><br />
<br />
Google’ın pagerank algoritmasını sorgulayan bu scriptimiz sizler için geliştirildi ve internette herhangi bir kopyası bulunmamaktadır.<br />
<br />
Scriptimizin birçok özelliği var bu özellikleri sıralayacak olursak,<br />
<br />
<span style="font-weight: bold;">Script Özellikleri</span><ul>
<li><img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Pagerank Sorgulama<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Alexa Dünya ve Ülke Sıralaması<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Dmoz Kayıt Durumu<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Alexa Backlink Sayısı<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Alexa Yıldızı Sayısı<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Yahoo Backlink<br />
<img src="images/nokta_list.gif" alt="Nokta" title="Nokta" height="16" width="16">Reklam alanları<br />
</li></ul>
yazılımımızda bu özellikler mevcuttur kaynak kodları ile paylaştığımız için geliştirmeye açık bir scripttir. <span style="font-weight: bold;">Spam sorgulamalar için spam koruması mevcuttur.</span><br />
<br />
Script <span style="font-weight: bold;">Php</span> Tabanlıdır.<br />
<br />
<span style="color: #800000;"><span style="font-weight: bold;"><br />
Scriptin Görünümü ;</span></span><br />
<br />
<img src="http://o1307.hizliresim.com/1c/f/q7uss.png" border="0" alt="resim" onload="NcodeImageResizer.createOn(this);" /><br />
<br />
<span style="color: #800000;"><span style="font-weight: bold;">Demo Linki ;</span></span><br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>webanaliz.forumhaz.com</code></div></div>
<br />
<span style="color: #FF0000;"><span style="font-weight: bold;">Rar Şifresi :</span></span><span style="font-weight: bold;"> mybb.com.tr</span><br />
<br />
<span style="color: #FF0000;"><span style="font-size: medium;"><span style="font-weight: bold;"><br />
İndirme Linki ;</span></span></span><br />
<br />
<div class="codeblock">
<div class="title">Kod:<br />
</div><div class="body" dir="ltr"><code>http://rapidshare.com/files/3587125018/Php%20Pagerank%20Sorgulama%20Scripti.rar</code></div></div>
<br />
<span style="font-weight: bold;">Not :</span> Sizden tek beklentimiz  konunun altına yorum atmanızdır bu sayede konumuz güncel kalacaktır.<br />
(alıntıdır)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[manset???? phpde nasıl eklenir]]></title>
			<link>https://mybbdepo.com/manset-phpde-nasil-eklenir-konusu.html</link>
			<pubDate>Fri, 21 Jun 2013 17:25:45 +0300</pubDate>
			<guid isPermaLink="false">https://mybbdepo.com/manset-phpde-nasil-eklenir-konusu.html</guid>
			<description><![CDATA[Site köyümün sitesi bitti ancak ne yaptımsa manseti calıştıramadım yardımmmmm<br />
mbtasarım köy v2 tarzı yada numerik navigasyonluda olabilir]]></description>
			<content:encoded><![CDATA[Site köyümün sitesi bitti ancak ne yaptımsa manseti calıştıramadım yardımmmmm<br />
mbtasarım köy v2 tarzı yada numerik navigasyonluda olabilir]]></content:encoded>
		</item>
	</channel>
</rss>