<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Byumut &#187; arşiv</title>
	<atom:link href="http://www.byumut.com/tag/arsiv/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.byumut.com</link>
	<description>&#34; En büyük risk, risk almamaktır.... &#34;</description>
	<lastBuildDate>Tue, 27 Sep 2011 18:40:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Javascript Keycode Değerleri ( Arşivlik )</title>
		<link>http://www.byumut.com/javascript-keycode-degerleri-arsivlik/</link>
		<comments>http://www.byumut.com/javascript-keycode-degerleri-arsivlik/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 09:19:29 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[arşiv]]></category>
		<category><![CDATA[checkKeycode]]></category>
		<category><![CDATA[document.onkeydown]]></category>
		<category><![CDATA[javascript fonksiyon]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[keycode]]></category>
		<category><![CDATA[keycode değerleri]]></category>
		<category><![CDATA[onkeydown]]></category>
		<category><![CDATA[onkeypress]]></category>
		<category><![CDATA[onkeyup]]></category>
		<category><![CDATA[window.event]]></category>

		<guid isPermaLink="false">http://www.byumut.com/?p=557</guid>
		<description><![CDATA[Javascript ile klavyede bastığımız tuşları bilerek işlemler yapabildiğimizi biliyoruz ama her seferinde hangi tuşun değeri neydi veya firefox ve ie için farklılıklar varmıydı diye düşündüğümüz oluyor sonrasında google dönüp hemen javascript keycode yazıyorduk . Bende bunu yapmaktan sıkıldığım ve arşiv olarak saklamak istedim . Arşiv aşağıda istediğiniz zaman istediğiniz değeri alıp kullanabilirsiniz . Kullanımı için [...]]]></description>
			<content:encoded><![CDATA[<p>Javascript ile klavyede bastığımız tuşları bilerek işlemler yapabildiğimizi biliyoruz ama her seferinde hangi tuşun değeri neydi veya firefox ve ie için farklılıklar varmıydı diye düşündüğümüz oluyor sonrasında google dönüp hemen javascript keycode yazıyorduk . Bende bunu yapmaktan sıkıldığım ve arşiv olarak saklamak istedim . Arşiv aşağıda istediğiniz zaman istediğiniz değeri alıp kullanabilirsiniz .</p>
<p>Kullanımı için ise hemen bir örnek vermek isterim kullanımını bilmeyen arkadaşlar için .</p>
<p><strong> Örnek Kullanım : </strong></p>
<div class="igBar"><span id="ljavascript-2"><a href="#" onclick="javascript:showPlainTxt('javascript-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">JAVASCRIPT:</span>
<div id="javascript-2">
<div class="javascript">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">document.<span style="color: #006600;">onkeydown</span> = checkKeycode</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">function</span> checkKeycode<span style="color: #66cc66;">&#40;</span>e<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #003366; font-weight: bold;">var</span> keycode;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #66cc66;">&#40;</span>window.<span style="color: #006600;">event</span><span style="color: #66cc66;">&#41;</span> keycode = window.<span style="color: #006600;">event</span>.<span style="color: #006600;">keyCode</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #66cc66;">&#40;</span>e<span style="color: #66cc66;">&#41;</span> keycode = e.<span style="color: #006600;">which</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span>keycode==<span style="color: #CC0000;color:#800000;">9</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>&nbsp; <span style="color: #000066;">alert</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"Tab tuşuna bastınız . "</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;<span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span>keycode==<span style="color: #CC0000;color:#800000;">46</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>&nbsp; <span style="color: #000066;">alert</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"Delete tuşuna bastınız silmek istediğinize eminmisiniz ? "</span><span style="color: #66cc66;">&#41;</span>; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;<span style="color: #000066; font-weight: bold;">if</span><span style="color: #66cc66;">&#40;</span>keycode==<span style="color: #CC0000;color:#800000;">112</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>&nbsp; <span style="color: #000066;">alert</span><span style="color: #66cc66;">&#40;</span><span style="color: #3366CC;">"Yardım Sayfasına Yönlendiriliyorsunuz ...&nbsp; "</span><span style="color: #66cc66;">&#41;</span>; window.<span style="color: #006600;">location</span> = <span style="color: #3366CC;">"http://byumut.com"</span>;&nbsp; <span style="color: #66cc66;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p><span id="more-557"></span></p>
<p><strong> Tüm Değerler  : </strong><br />
 </p>
<p><center> </p>
<table style="border: 1px solid silver; height: 2179px; width: 90%;">
<tbody>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px; background-color: #333399; color: white;" width="36%"><strong>Klavyedeki Tuşları<br />
</strong></td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px; background-color: #333399; color: white;" width="26%"><strong>IE  Js için<br />
</strong></td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px; background-color: #333399; color: white;" colspan="2" width="26%"><strong>Firefox  Js için<br />
</strong></td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">backspace</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">8</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">8</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">tab</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">9</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">9</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">enter</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">13</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">13</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">shift</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">16</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">16</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">ctrl</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">17</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">17</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">alt</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">18</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">18</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">pause/break</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">19</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">19</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">caps lock</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">20</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">20</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">escape</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">27</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">27</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">page up</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">33</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">33</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">Space</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">32</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">32</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">page down</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">34</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">34</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">end</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">35</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">35</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">home</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">36</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">36</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">arrow left</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">37</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">37</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">arrow up</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">38</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">38</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">arrow right</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">39</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">39</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">arrow down</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">40</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">40</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">print screen</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">44</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">44</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">insert</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">45</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">45</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">delete</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">46</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">46</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">0</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">48</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">48</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">1</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">49</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">49</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">2</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">50</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">50</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">3</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">51</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">51</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">4</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">52</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">52</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">5</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">53</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">53</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">6</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">54</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">54</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">7</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">55</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">55</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">8</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">56</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">56</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">9</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">57</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">57</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">a</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">65</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">65</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">b</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">66</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">66</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">c</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">67</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">67</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">d</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">68</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">68</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">e</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">69</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">69</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">f</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">70</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">70</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">g</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">71</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">71</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">h</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">72</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">72</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">i</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">73</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">73</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">j</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">74</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">74</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">k</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">75</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">75</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">l</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">76</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">76</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">m</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">77</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">77</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">n</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">78</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">78</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">o</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">79</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">79</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">p</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">80</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">80</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">q</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">81</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">81</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">r</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">82</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">82</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">s</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">83</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">83</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">t</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">84</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">84</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">u</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">85</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">85</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">v</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">86</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">86</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">w</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">87</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">87</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">x</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">88</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">88</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">y</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">89</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">89</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">z</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">90</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">90</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">left window key</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">91</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">91</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">right window key</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">92</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">92</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">select key</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">93</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">93</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">numpad 0</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">96</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">96</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">numpad 1</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">97</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">97</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">numpad 2</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">98</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">98</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">numpad 3</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">99</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">99</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">numpad 4</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">100</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">100</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">numpad 5</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">101</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">101</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">numpad 6</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">102</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">102</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">numpad 7</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">103</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">103</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">numpad 8</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">104</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">104</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">numpad 9</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">105</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">105</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">multiply</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">106</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">106</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">add</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">107</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">107</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">subtract</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">109</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">109</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">decimal point</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">110</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">110</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">divide</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">111</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">111</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">f1</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">112</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">112</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">f2</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">113</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">113</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">f3</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">114</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">114</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">f4</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">115</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">115</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">f5</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">116</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">116</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">f6</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">117</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">117</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">f7</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">118</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">118</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">f8</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">119</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">119</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">f9</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">120</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">120</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">f10</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">121</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">121</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">f11</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">122</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">122</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">f12</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">123</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">123</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">num lock</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">144</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">144</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">scroll lock</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">145</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">145</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">My Computer (multimedia keyboard)</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">182</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">182</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">My Calculator (multimedia   keyboard)</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">183</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">183</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">semi-colon</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">186</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">186</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">equal sign</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">187</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">107</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">comma</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">188</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">188</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">dash</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">189</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">189</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">period</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">190</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">190</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">forward slash</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">191</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">191</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">open bracket</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">219</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">219</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">back slash</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">220</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">220</span></td>
</tr>
<tr>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%">close bracket</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">221</td>
<td style="border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%">221</td>
</tr>
<tr>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="36%"><span style="color: #333399;">single quote</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">222</span></td>
<td style="background-color: #f4f4f4; border-bottom: 1px solid silver; border-right: 1px solid silver; padding: 2px;" width="26%"><span style="color: #333399;">222</span></td>
</tr>
</tbody>
</table>
<p></center></p>

<p class="sayac_bilgi">64 views</p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/javascript-keycode-degerleri-arsivlik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript ve Sql Olarak Türkiye il , ilçe , mahalle listesi ( Arşivlik )</title>
		<link>http://www.byumut.com/javascript-ve-sql-olarak-turkiye-il-ilce-mahalle-listesi-arsivlik/</link>
		<comments>http://www.byumut.com/javascript-ve-sql-olarak-turkiye-il-ilce-mahalle-listesi-arsivlik/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 00:18:09 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[arşiv]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[il]]></category>
		<category><![CDATA[ilçe]]></category>
		<category><![CDATA[listesi]]></category>
		<category><![CDATA[mahalle]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[türkiye]]></category>
		<category><![CDATA[Türkiyenin İlçeleri]]></category>
		<category><![CDATA[Türkiyenin illeri]]></category>
		<category><![CDATA[Türkiyenin Mahalleleri]]></category>

		<guid isPermaLink="false">http://www.byumut.com/?p=547</guid>
		<description><![CDATA[Projelerimizde genel olarak ihtiyaç duyduğumuz uygulamalardan birisidir Türkiyenin il ve ilçeleri size arşivimden bu dataları paylaşmak istedim umarım işinize yarayacaktır. Kullanımına gelince sql olan paketi veritabanına atıyorsunuz . Ve oradan verileri kontrol ettirerek kullanıyorsunuz . Verileri İndirmek İçin Buraya Tıklayın Javascript olan için ise bir örneğini vermek isterim : PLAIN TEXT HTML: &#60;!--- javascript il [...]]]></description>
			<content:encoded><![CDATA[<p>Projelerimizde genel olarak ihtiyaç duyduğumuz uygulamalardan birisidir Türkiyenin il ve ilçeleri size arşivimden bu dataları paylaşmak istedim umarım işinize yarayacaktır.  Kullanımına gelince sql olan paketi veritabanına atıyorsunuz . Ve oradan verileri kontrol ettirerek kullanıyorsunuz .</p>
<p><strong><a href="/wp-content/uploads/il_ilce_mahalle_sql_javascript.rar" target="_blank">  Verileri İndirmek İçin Buraya Tıklayın </a></strong>  </p>
<p><strong>Javascript olan için ise bir örneğini vermek isterim : </strong></p>
<div class="igBar"><span id="lhtml-5"><a href="#" onclick="javascript:showPlainTxt('html-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-5">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #808080; font-style: italic;">&lt;!--- javascript il ilçe mahalle kodları burada olacak ---&gt;</span></span> </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;<span style="color: #009900;"><a href="http://december.com/html/4/element/form.html"><span style="color: #000000; font-weight: bold;">&lt;form</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">"search"</span> <span style="color: #000066;">method</span>=<span style="color: #ff0000;">"POST"</span> <span style="color: #000066;">action</span>=<span style="color: #ff0000;">"islem.php"</span> <span style="color: #000066;">style</span>=<span style="color: #ff0000;">"margin-top: 0; margin-bottom: 0"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/table.html"><span style="color: #000000; font-weight: bold;">&lt;table</span></a> <span style="color: #000066;">border</span>=<span style="color: #ff0000;">"0"</span> <span style="color: #000066;">cellpadding</span>=<span style="color: #ff0000;">"0"</span> <span style="color: #000066;">cellspacing</span>=<span style="color: #ff0000;">"3"</span> <span style="color: #000066;">style</span>=<span style="color: #ff0000;">"border-collapse: collapse"</span> bordercolor=<span style="color: #ff0000;">"#111111"</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"100%"</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">"AutoNumber2"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">&lt;tr&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">&lt;td</span></a> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"100%"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"center"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/select.html"><span style="color: #000000; font-weight: bold;">&lt;select</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">"cities"</span> <span style="color: #000066;">onChange</span>=<span style="color: #ff0000;">"il_ilce(document.search.subCities,this.options[this.options.selectedIndex].value,&amp;quot;search&amp;quot;)"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/option.html"><span style="color: #000000; font-weight: bold;">&lt;option</span></a> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">"81"</span> selected&gt;</span>İstanbul-Tümü<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/option.html"><span style="color: #000000; font-weight: bold;">&lt;option</span></a> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">"0"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>İstanbul-Avrupa<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/option.html"><span style="color: #000000; font-weight: bold;">&lt;option</span></a> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">"1"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>İstanbul-Anadolu<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/option.html"><span style="color: #000000; font-weight: bold;">&lt;option</span></a> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">"2"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>Ankara<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/option.html"><span style="color: #000000; font-weight: bold;">&lt;option</span></a> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">"3"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span>İzmir<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;</span></a>! --- Bu şekilde burada iller devam edecek ---<span style="color: #000000; font-weight: bold;">&gt;</span></a></span> </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/select&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/td&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/tr&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/tr.html"><span style="color: #000000; font-weight: bold;">&lt;tr&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/td.html"><span style="color: #000000; font-weight: bold;">&lt;td</span></a> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">"100%"</span> <span style="color: #000066;">align</span>=<span style="color: #ff0000;">"center"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/select.html"><span style="color: #000000; font-weight: bold;">&lt;select</span></a> <span style="color: #000066;">size</span>=<span style="color: #ff0000;">"1"</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">"subCities"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><a href="http://december.com/html/4/element/option.html"><span style="color: #000000; font-weight: bold;">&lt;option&gt;</span></a></span>İl Seçiniz<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/option&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/select&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/td&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/tr&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/table&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/form&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><strong>İlleri yazmak zor geldi bende oturdum php ye çevirdim arkadaşlar lazım olur diye bunuda ekliyorum : </strong><br />
</p>
<div class="igBar"><span id="lphp-6"><a href="#" onclick="javascript:showPlainTxt('php-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-6">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;select name=<span style="color:#FF0000;">"il"</span> onChange=<span style="color:#FF0000;">"ChangeTown(document.registration_form.ilce,this.options[this.options.selectedIndex].value,&amp;quot;registration_form&amp;quot;)"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000; font-weight:bold;">&lt;?</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span> = <a href="http://www.php.net/array"><span style="color:#000066;">array</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'81'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"İstanbul-Tümü"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'0'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"İstanbul-Avrupa"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'1'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"İstanbul-Anadolu"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'2'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Ankara"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'3'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"İzmir"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'4'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Adana"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'5'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Adıyaman"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'6'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Afyon"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'7'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Ağrı"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'8'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Aksaray"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'9'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Amasya"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'10'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Antalya"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'11'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Ardahan"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'12'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Artvin"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'13'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Aydın"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'14'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Balıkesir"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'15'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Bartın"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'16'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Batman"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'17'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Bayburt"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'18'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Bilecik"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'19'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Bingöl"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'20'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Bitlis"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'21'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Bolu"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'22'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Burdur"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'23'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Bursa"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'24'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Çanakkale"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'25'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Çankırı"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'26'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Çorum"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'27'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Denizli"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'28'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Diyarbakır"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'100'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Düzce"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'29'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Edirne"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'30'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Elazığ"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'31'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Erzincan"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'32'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Erzurum"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'33'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Eskişehir"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'34'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Gaziantep"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'35'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Giresun"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'36'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Gümüşhane"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'37'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Hakkari"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'38'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Hatay"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'39'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Iğdır"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'40'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Isparta"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'41'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"İçel"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'53'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kahramanmaraş"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'54'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Karabük"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'55'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Karaman"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'42'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kars"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'43'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kastamonu"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'44'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kayseri"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'45'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kırıkkale"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'46'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kırklareli"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'47'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kırşehir"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'56'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kilis"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'48'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kocaeli"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'49'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Konya"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'50'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Kütahya"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'51'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Malatya"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'52'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Manisa"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'57'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Mardin"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'58'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Muğla"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'59'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Muş"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'60'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Nevşehir"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'61'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Niğde"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'62'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Ordu"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'63'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Osmaniye"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'64'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Rize"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'65'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Sakarya"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'66'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Samsun"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'67'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Siirt"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'68'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Sinop"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'69'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Sivas"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'74'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Şanlıurfa"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'75'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Şırnak"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'70'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Tekirdağ"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'71'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Tokat"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'72'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Trabzon"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'73'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Tunceli"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'76'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Uşak"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'77'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Van"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'78'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Yalova"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'79'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Yozgat"</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$iller</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'80'</span><span style="color:#006600; font-weight:bold;">&#93;</span> = <span style="color:#FF0000;">"Zonguldak"</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#616100;">foreach</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$iller</span> <span style="color:#616100;">as</span> <span style="color:#0000FF;">$a</span>=&gt;<span style="color:#0000FF;">$b</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span> </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#616100;">if</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$a</span>==<span style="color:#FF0000;">"81"</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#0000FF;">$selected</span> = <span style="color:#FF0000;">' selected=&quot;selected&quot;'</span>; <span style="color:#006600; font-weight:bold;">&#125;</span><span style="color:#616100;">else</span><span style="color:#006600; font-weight:bold;">&#123;</span> <span style="color:#0000FF;">$selected</span>=<span style="color:#FF0000;">""</span>; <span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <span style="color:#FF0000;">'&lt;option value=&quot;'</span>.<span style="color:#0000FF;">$a</span>.<span style="color:#FF0000;">'&quot;'</span>.<span style="color:#0000FF;">$selected</span>.<span style="color:#FF0000;">'&gt;'</span>.<span style="color:#0000FF;">$b</span>.<span style="color:#FF0000;">'&lt;/option&gt;'</span>; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#000000; font-weight:bold;">?&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>

<p class="sayac_bilgi">543 views</p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/javascript-ve-sql-olarak-turkiye-il-ilce-mahalle-listesi-arsivlik/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

