<?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; javascript</title>
	<atom:link href="http://www.byumut.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.byumut.com</link>
	<description>&#34; Sadece Yapamadıklarınızdan Pişman Olursunuz &#34;</description>
	<lastBuildDate>Sun, 04 Jul 2010 11:17:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</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>
]]></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[Ajax]]></category>
		<category><![CDATA[Genel Programlama]]></category>
		<category><![CDATA[Php]]></category>
		<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>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/javascript-ve-sql-olarak-turkiye-il-ilce-mahalle-listesi-arsivlik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript ile form göndermek !</title>
		<link>http://www.byumut.com/javascript-ile-form-gondermek/</link>
		<comments>http://www.byumut.com/javascript-ile-form-gondermek/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 14:39:28 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript form göndermek]]></category>
		<category><![CDATA[kısa kod]]></category>
		<category><![CDATA[submit]]></category>
		<category><![CDATA[submitform]]></category>

		<guid isPermaLink="false">http://www.byumut.com/?p=328</guid>
		<description><![CDATA[Herzaman için formumuza bir submit butonu ve tıklayınca gönder şeklinde uygulamalar yapmayız bazende gönder butonu yerine resim kullanmak hatta bir link koymak isteriz . Peki burada işte gönderme işlemi nasıl olacak ? Burada imdadımıza javascript yetişiyor işte javascript ile form verilerini göndermemize yarayan kod parçacığı ... İşte Kodumuz : PLAIN TEXT PHP: &#60;form name="forum_adi" action="islem.php"&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Herzaman için formumuza bir submit butonu ve tıklayınca gönder şeklinde uygulamalar yapmayız bazende gönder butonu yerine resim kullanmak hatta bir link koymak isteriz . Peki burada işte gönderme işlemi nasıl olacak  ? Burada imdadımıza javascript yetişiyor işte javascript ile form verilerini göndermemize yarayan kod parçacığı ...<br />
<span id="more-328"></span><br />
<strong>İşte Kodumuz : </strong></p>
<div class="igBar"><span id="lphp-8"><a href="#" onclick="javascript:showPlainTxt('php-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-8">
<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;form name=<span style="color:#FF0000;">"forum_adi"</span> action=<span style="color:#FF0000;">"islem.php"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;input type=<span style="color:#FF0000;">'text'</span> name=<span style="color:#FF0000;">'adi_soyadi'</span>&gt;</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;">&lt;A href=<span style="color:#FF0000;">"javascript: submitform()"</span>&gt;Gönder&lt;/A&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/form&gt;</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;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#008000; font-style:italic;">## İşte submitform() fonksiyonumuz </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;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#000000; font-weight:bold;">&lt;SCRIPT language</span>=<span style="color:#FF0000;">"JavaScript"</span>&gt;</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:#000000; font-weight:bold;">function</span> submitform<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;"><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; document.forum_adi.submit<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;"><span style="color:#006600; font-weight:bold;">&#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;"><span style="color:#000000; font-weight:bold;">&lt;/SCRIPT&gt;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Kolay gelsin <img src='http://www.byumut.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/javascript-ile-form-gondermek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Confirm () ?</title>
		<link>http://www.byumut.com/javascript-confirm/</link>
		<comments>http://www.byumut.com/javascript-confirm/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 23:12:20 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[confirm]]></category>

		<guid isPermaLink="false">http://www.byumut.com/?p=324</guid>
		<description><![CDATA[" Silmek istediğinize eminmisiniz ? " sorusunu kullanıcınız veya site editörünüzün sil düğmesine tıkladığınızda görmesini ve iptal düğmesine bastığında işlemin durmasını Tamam düğmesine tıkladığında ise işlemin devam etmesini ve silinmesi gerekeni silmek mi istiyorsunuz ? İşte Kod : PLAIN TEXT PHP: &#60;a href="silmeadresi.php?id=silinecek_id" onclick="return confirm('Silmek İstediğinize Eminmisiniz ? ');"&#62;Sil&#60;/a&#62;]]></description>
			<content:encoded><![CDATA[<p>" Silmek istediğinize eminmisiniz ? " sorusunu kullanıcınız veya site editörünüzün sil düğmesine tıkladığınızda görmesini ve <strong>iptal</strong> düğmesine bastığında işlemin durmasını <strong>Tamam</strong> düğmesine tıkladığında  ise işlemin devam etmesini ve silinmesi gerekeni silmek mi istiyorsunuz ?<br />
<span id="more-324"></span><br />
İşte Kod : </p>
<div class="igBar"><span id="lphp-10"><a href="#" onclick="javascript:showPlainTxt('php-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-10">
<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;a href=<span style="color:#FF0000;">"silmeadresi.php?id=silinecek_id"</span> onclick=<span style="color:#FF0000;">"return confirm('Silmek İstediğinize Eminmisiniz ? ');"</span>&gt;Sil&lt;/a&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/javascript-confirm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eskilerden Ajax Bul Uygulaması :)</title>
		<link>http://www.byumut.com/eskilerden-ajax-bul-uygulamasi/</link>
		<comments>http://www.byumut.com/eskilerden-ajax-bul-uygulamasi/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 19:55:10 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ajax bul]]></category>
		<category><![CDATA[bul]]></category>
		<category><![CDATA[php ara]]></category>
		<category><![CDATA[str_replace]]></category>

		<guid isPermaLink="false">http://www.byumut.com/?p=317</guid>
		<description><![CDATA[Merhaba arkadaşlar uzun zaman öncesinden yazmış olduğum o zamanlar ne için yazdığımı tam bilmediğim bir uygulamayı sizlerle paylaşmak istiyorum . Uygulama aslında basit bir metin veriyorsunuz ve bu metin içerisinde istediğiniz sözcüğü arayıp renklendiriyor ama dahada geliştirilebilir ve yeni özellikler katılarak değişik uygulamalarda kullanılabilir diye düşünüyorum mesela her sitede en altta bunun gibi bul kutusu [...]]]></description>
			<content:encoded><![CDATA[<p>Merhaba arkadaşlar uzun zaman öncesinden yazmış olduğum o zamanlar ne için yazdığımı tam bilmediğim bir uygulamayı sizlerle paylaşmak istiyorum . Uygulama aslında basit bir metin veriyorsunuz ve bu metin içerisinde istediğiniz sözcüğü arayıp renklendiriyor ama dahada geliştirilebilir ve yeni özellikler katılarak değişik uygulamalarda kullanılabilir diye düşünüyorum mesela her sitede en altta bunun gibi bul kutusu olsa arayınca istediğimiz sözçüğü çat diye bulsak güzel olurdu <img src='http://www.byumut.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Gerçi ctrl+f bu istediğimiz işlemi görüyor ama şu zamanda ama birçok insana ctrl+f ne işe yarıyor desek bilmez onun için güzel olabilirdi neyse kodlar aşağıda sistemin çalışır halini görmek için ise linki tıklamanız yeterli olacak iyi kullanımlar .. <span id="more-317"></span> </p>
<p><strong>index.php</strong></p>
<div class="igBar"><span id="lphp-13"><a href="#" onclick="javascript:showPlainTxt('php-13'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-13">
<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;!DOCTYPE html PUBLIC <span style="color:#FF0000;">"-//W3C//DTD XHTML 1.0 Transitional//EN"</span> <span style="color:#FF0000;">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;html xmlns=<span style="color:#FF0000;">"http://www.w3.org/1999/xhtml"</span>&gt;</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;">&lt;head&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;meta http-equiv=<span style="color:#FF0000;">"Content-Type"</span> content=<span style="color:#FF0000;">"text/html; charset=utf-8"</span> /&gt;</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;">&lt;title&gt;Ajax Bul Uygulaması ! - Umut ÇETİNKAYA&lt;/title&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;style&gt;</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:#008000; font-style:italic;">#content{</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">border:1px solid silver;</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;">height:<span style="color:#CC66CC;color:#800000;">100</span>%;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#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;"><span style="color:#008000; font-style:italic;">#form{</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">text-align:center;</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;">margin:5px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">border:1px solid silver;</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;">padding:5px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">background-color:<span style="color:#008000; font-style:italic;">#E8E8E8;</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;">padding:10px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#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;"><span style="color:#008000; font-style:italic;">#veri_kutusu{</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">border:1px solid silver;</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;">width:600px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">height:<span style="color:#CC66CC;color:#800000;">100</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:#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;"><span style="color:#008000; font-style:italic;">#sonuc_veri{</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;">margin-top:5px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin-bottom:5px;</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;">margin-left:5px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin-right:5px;</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;">border:1px solid silver;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">height:250px;</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;">overflow:auto;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">padding:5px;</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:#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;"><span style="color:#008000; font-style:italic;">#bul_alan{</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;">text-align:center;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin-top:5px;</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;">margin-bottom:5px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">margin-left:5px;</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;">margin-right:5px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">border:1px solid silver;</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;">height:20px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">background-color:<span style="color:#008000; font-style:italic;">#E8E8E8;</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;">padding:10px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#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;"><span style="color:#008000; font-style:italic;">#bul{</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">border:1px solid silver;&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;">width:570px;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">height:20px;</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;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#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;">&lt;/style&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/head&gt;</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;">&lt;body&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;script&gt;</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:#000000; font-weight:bold;">function</span> veriyaz<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">document.getElementById<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'sonuc_veri'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.innerHTML = document.getElementById<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'veri_kutusu'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.value;</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:#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;"><span style="color:#000000; font-weight:bold;">&lt;/script&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;">&lt;iframe style=<span style="color:#FF0000;">"display:none;"</span> name=<span style="color:#FF0000;">"gizli_iframe"</span>&gt;&lt;/iframe&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;form action=<span style="color:#FF0000;">"guncelle.php"</span> name=<span style="color:#FF0000;">"bul_formu"</span> id=<span style="color:#FF0000;">"bul_formu"</span> target=<span style="color:#FF0000;">"gizli_iframe"</span> method=<span style="color:#FF0000;">"post"</span>&gt;</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;">&lt;div id=<span style="color:#FF0000;">"content"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div id=<span style="color:#FF0000;">"bul_alan"</span>&gt;</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;">&lt;input name=<span style="color:#FF0000;">"bul"</span> type=<span style="color:#FF0000;">"text"</span> id=<span style="color:#FF0000;">"bul"</span> value=<span style="color:#FF0000;">"Bulunacak Sözcük"</span> onclick=<span style="color:#FF0000;">"this.value='';"</span>/&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&amp;nbsp;&lt;input type=<span style="color:#FF0000;">"submit"</span> name=<span style="color:#FF0000;">"submit"</span>&nbsp; value=<span style="color:#FF0000;">"Bul"</span> /&gt;</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;">&lt;/div&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div id=<span style="color:#FF0000;">"form"</span>&gt;</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;">&lt;textarea name=<span style="color:#FF0000;">"veri"</span> id=<span style="color:#FF0000;">"veri_kutusu"</span> rows=<span style="color:#FF0000;">"10"</span> onblur=<span style="color:#FF0000;">"veriyaz()"</span> onclick=<span style="color:#FF0000;">"this.value='';"</span>&gt;İçinde Arama Yapılacak Metin&lt;/textarea&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt;</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;">&lt;div id=<span style="color:#FF0000;">"sonuc_veri"</span>&gt;</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;">&lt;/div&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/div&gt;</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;">&lt;/form&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/body&gt;</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;">&lt;/html&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><strong>guncelle.php </strong></p>
<div class="igBar"><span id="lphp-14"><a href="#" onclick="javascript:showPlainTxt('php-14'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-14">
<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;!DOCTYPE html PUBLIC <span style="color:#FF0000;">"-//W3C//DTD XHTML 1.0 Transitional//EN"</span> <span style="color:#FF0000;">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;html xmlns=<span style="color:#FF0000;">"http://www.w3.org/1999/xhtml"</span>&gt;</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;">&lt;head&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;meta http-equiv=<span style="color:#FF0000;">"Content-Type"</span> content=<span style="color:#FF0000;">"text/html; charset=utf-8"</span> /&gt;</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;">&lt;title&gt;Ajax Bul Uygulaması !&lt;/title&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/head&gt;</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;">&lt;body&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;div id=<span style="color:#FF0000;">"sonuc"</span>&gt;</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:#000000; font-weight:bold;">&lt;?</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$veri</span> = <span style="color:#0000FF;">$_POST</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'veri'</span><span style="color:#006600; font-weight:bold;">&#93;</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:#0000FF;">$bul</span> = <span style="color:#0000FF;">$_POST</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'bul'</span><span style="color:#006600; font-weight:bold;">&#93;</span>; </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$veri</span> = <a href="http://www.php.net/str_replace"><span style="color:#000066;">str_replace</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$bul</span>,<span style="color:#FF0000;">"&lt;span style=<span style="color:#000099; font-weight:bold;">\"</span>background:#FF8C8C;<span style="color:#000099; font-weight:bold;">\"</span>&gt;$bul&lt;/span&gt;"</span>,<span style="color:#0000FF;">$veri</span><span style="color:#006600; font-weight:bold;">&#41;</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;"><a href="http://www.php.net/echo"><span style="color:#000066;">echo</span></a> <a href="http://www.php.net/stripslashes"><span style="color:#000066;">stripslashes</span></a><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$veri</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;"><span style="color:#000000; font-weight:bold;">?&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;">&lt;/div&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;script&gt; parent.document.getElementById<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'sonuc_veri'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.innerHTML = document.getElementById<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'sonuc'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.innerHTML <span style="color:#000000; font-weight:bold;">&lt;/script&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;">&lt;/body&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/html&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><a href="http://www.byumut.com/ornekler/ajax_bul/">Uygulamanın Çalışır Halini Görmek İçin Tıklayınız ! </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/eskilerden-ajax-bul-uygulamasi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Hatalarından Sizde mi Gıcık Alıyorsunuz :)</title>
		<link>http://www.byumut.com/javascript-hatalarindan-sizde-mi-gicik-aliyorsunuz/</link>
		<comments>http://www.byumut.com/javascript-hatalarindan-sizde-mi-gicik-aliyorsunuz/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 10:59:07 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[hata yok]]></category>
		<category><![CDATA[javascript hataları]]></category>
<category>hata yok</category><category>javascript hatalari</category>
		<guid isPermaLink="false">http://www.byumut.com/?p=115</guid>
		<description><![CDATA[Evet ben gerçekten dayanamıyorum sol altta " ! Bitti , Sayfada Hata Var "  yazısından geçenlerde bir js kodu yazdım mozilla firefox 3.0 da hiç bir sıkıntısı olmayan kod explorer 'da tür uyuşmazlığı diye bir hata çıkarıyor . Kardeşim bu tür uyuşmazlığı nedir ne değildir diye araştırdım araştırdım bir türlü işin içinden çıkamadım . Halbuki kodda [...]]]></description>
			<content:encoded><![CDATA[<p>Evet ben gerçekten dayanamıyorum sol altta <strong>" ! Bitti , Sayfada Hata Var "</strong>  yazısından geçenlerde bir js kodu yazdım mozilla firefox 3.0 da hiç bir sıkıntısı olmayan kod explorer 'da tür uyuşmazlığı diye bir hata çıkarıyor . Kardeşim bu tür uyuşmazlığı nedir ne değildir diye araştırdım araştırdım bir türlü işin içinden çıkamadım . Halbuki kodda sorun yok çalışıyor sıkıntısız ama köşede durmadan hata göstergesi var bazende kafasına göre kayboluyor hee bende gıjık oldum  direk kaldırdım tüm hata göstergelerini ve rahatladı içim yaw .<span id="more-115"></span></p>
<p>E peki nasıl mı yaptım işte kod , aşağıdaki verdiğim kodu sadece sayfanızın en altına yapıştırın olsun bitsin .</p>
<div class="igBar"><span id="ljavascript-16"><a href="#" onclick="javascript:showPlainTxt('javascript-16'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">JAVASCRIPT:</span>
<div id="javascript-16">
<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;">&lt;script type=<span style="color: #3366CC;">"text/javascript"</span>&gt;&lt;!--</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #003366; font-weight: bold;">function</span> hata_yok<span style="color: #66cc66;">&#40;</span><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;"><span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">true</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><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;">window.<span style="color: #000066;">onerror</span> = hata_yok;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900; font-style: italic;">// --&gt;&lt;/script&gt; </span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/javascript-hatalarindan-sizde-mi-gicik-aliyorsunuz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Sanal Klavye Yapımı</title>
		<link>http://www.byumut.com/toparlanma-javascript-sanal-klavye-yapimi/</link>
		<comments>http://www.byumut.com/toparlanma-javascript-sanal-klavye-yapimi/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 12:21:46 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[sanal klavye]]></category>
		<category><![CDATA[toparlanma]]></category>

		<guid isPermaLink="false">http://www.byumut.com/?p=45</guid>
		<description><![CDATA[Merhaba arkadaşlar tekrardan farklı bir örneği sizinle paylaşmaktan mutluluk duyuyorum. Şuanda üzerinde çalıştığım bir alışveriş sistemi için gerekli olan sanal klavye uygulamasının yapımını burdan sizinle paylasmak istedim . Klavye basit biraz artık burdan mantığını alıp geliştirmek size düşüyor . Başlıyoruz İlk önce basit bir form oluşturuyoruz ! İşte bu şekilde iki input'tan oluşan bir form [...]]]></description>
			<content:encoded><![CDATA[<p>Merhaba arkadaşlar tekrardan farklı bir örneği sizinle paylaşmaktan mutluluk duyuyorum. Şuanda üzerinde çalıştığım bir alışveriş sistemi için gerekli olan sanal klavye uygulamasının yapımını burdan sizinle paylasmak istedim . Klavye basit biraz artık burdan mantığını alıp geliştirmek size düşüyor .</p>
<p><span id="more-45"></span></p>
<h2>Başlıyoruz</h2>
<p>İlk önce basit bir form oluşturuyoruz !</p>
<p align="left"><img src="http://www.byumut.com/ornekler/sanal_klavye/form.JPG" alt="Basit Bir Form ..." align="left" /></p>
<p>İşte bu şekilde iki input'tan oluşan bir form oluşturduktan sonrasında ise kodlarımıza geçiyoruz . Başta sölediğim gibi bu örnek basit sadece mantığını anlatmak için oluşturulmuş bir örnek . Siz ne kadar geliştirirseniz o kadar büyücek ve güzelleşecektir buna inanıyorum . İlk önce input değerlerinden herhangi birisine tıklandığında sağ kısımda küçük bir alanın görünmesini diğer input'a tıkladığımızda ise o input değeri için olan alanın görünmesini diğer alanın ise gizlenmesini istiyoruz . O halde yapmamız gerek input ' lara birer onclick eklemek ve javascript fonksiyonumuzu yazmaya baslamak .</p>
<h2>javascript fonksiyonları</h2>
<p><img src="http://www.byumut.com/ornekler/sanal_klavye/js.JPG" alt="Javascript" /></p>
<p>işte arkadaşlar gördüğünüz gibi temelde 3 kalıp fonksiyonu birleşimi .</p>
<p>1. fonksiyon birinci inputtan ikinci inputa geçtiğimizde 1. input için görünen alanın kaybolmasını saglıyor . Aynı şekilde tam terside geçerli tabiki .</p>
<p>2. fonksiyon ise sanal klavyeyi gösteren gizleyen alan !</p>
<p>3. fonksiyon gurbu ise sanal klavye içindeki değerleri inputların içerisine yazmaya yarayan fonksiyon .</p>
<p>Şimdi ise sanal klavyeyi gösterelim ! Sanal klavyede burda çok basit bir şekilde tekrardan üzerinde bastırmak istiyorum bu örneği göz önüne alarak çok değişik şeyler geliştirebilirsiniz ! ...</p>
<h2>Sanal Klavye Kodları</h2>
<p><a href="http://www.byumut.com/ornekler/sanal_klavye/klavye.JPG"><img class=" alignnone" src="http://www.byumut.com/ornekler/sanal_klavye/klavye.JPG" alt="" width="547" height="305" /></a></p>
<p>BİTTİ ... <img src='http://www.byumut.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.byumut.com/ornekler/sanal_klavye/index.html">Uygulamanın Çalışır Hali İçin Tıklayınız !</a></p>
<p><a href="http://www.byumut.com/ornekler/sanal_klavye/indir.rar">Uygulamayı İndirmek İçin Tıklayın !</a></p>
<p><a href="http://www.byumut.com">UMUT ÇETİNKAYA</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/toparlanma-javascript-sanal-klavye-yapimi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ajax Olmasaydı Ne Yapardık ?</title>
		<link>http://www.byumut.com/toparlanma-ajax-olmasaydi-ne-yapardik/</link>
		<comments>http://www.byumut.com/toparlanma-ajax-olmasaydi-ne-yapardik/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 12:05:12 +0000</pubDate>
		<dc:creator>byumut</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[toparlanma]]></category>

		<guid isPermaLink="false">http://www.byumut.com/?p=40</guid>
		<description><![CDATA[Merhaba arkadaşlar uzun bir aradan sonra tekrardan birlikteyiz . Ne zamandır vakit bulup sizlerle bişeyler paylaşamıyordum nede olsa teknoloji dünyası her geçen gün gelişiyor yerinde durmuyor . Bu kısa zaman içerisinde yeni projeler değişik teknikler öğrenme keşfetme çabası içindeyken Msn'imdeki kısa bir ajax muhabbeti ile ortaya çıkan bir konuyu sizinle paylaşmak istedim. Ajax-tr.com bugüne kadar [...]]]></description>
			<content:encoded><![CDATA[<p>Merhaba arkadaşlar uzun bir aradan sonra tekrardan birlikteyiz . Ne zamandır vakit bulup sizlerle bişeyler paylaşamıyordum nede olsa teknoloji dünyası her geçen gün gelişiyor yerinde durmuyor . Bu kısa zaman içerisinde yeni projeler değişik teknikler öğrenme keşfetme çabası içindeyken Msn'imdeki kısa bir ajax muhabbeti ile ortaya çıkan bir konuyu sizinle paylaşmak istedim.</p>
<p><a href="http://www.ajax-tr.com">Ajax-tr.com</a> bugüne kadar açılmış en güzel en büyük en kaliteli ajax , javascript azcıkta php <img src='http://www.byumut.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  destek sitesi belki . Çok özgün bir site <a href="http://www.ajax-tr.com">Ajax-tr.com</a>. Şimdi size ajax olmasaydı ne yapardık sorusunun cevabını vermek istiyorum !</p>
<p><span id="more-40"></span>Bu teknik için <a href="http://www.phpdc.net">suat</a> arkadaşımada teşekkürlerimi sunuyorum burdan .</p>
<h3>Ajax Olmasaydı Ne yapardık ?</h3>
<p>İlk önce <a href="http://ajax-tr.com/eyceks-kutuphanesi-ve-ornek-bir-uygulama/">eyceks</a> kütüphanesine karşılık gelen bir uygulama anlatacağımı söleyerek başlayım işe</p>
<p><a href="http://ajax-tr.com/eyceks-kutuphanesi-ve-ornek-bir-uygulama/">eyceks</a> kütüphanesinde yapılan uygulama kütüphaneyi içeri çağırmak ve çağırdığımız sayfada 'da</p>
<p>JXG ve JXP komutlarıyla veri göndermek çıktıyı aynı ekranda alma işlemini yapıyorduk biliyorsunuz .</p>
<p>eyceks.js kütüphanesini sayfa içine çağırdıktan sonra aşağıdaki gibi tanımlama ve gönderme kodu yazıyorduk . sonrasında ise id="sonuc" elemenetinde çıktıyı göstermesini istiyorduk .</p>
<p>İşte şimdi size küçük ama hızlı bir alternatiften bahsetmek istiyorum <img src='http://www.byumut.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Ajax değil ama javascript ile ajax olmadan yapmak istediklerimizi nasıl yapacağımızdan bahsedeceğim tabiki eburhan arkadaşımızada burdan ellerine kollarına sağlık demek isterim eyceks kütüphanesi için ama alternatif sunmak herzaman için farklı bakış açısı kazandırması yönüyle hem ajax'ı hemde asıl anlatılmak istenini daha iyi kavrayabilmemizi sağlıcaktır .</p>
<p>Şimdi aslında tüm herşeyi 3 satır kod ile halledebiliriz .</p>
<h3>Ajax olmadan verileri göndermek ?</h3>
<p>Post veya Get ile verileri göndermek farketmiyor herşeyi sanki bu şekilde bir yöntem kullanmadan yapacakmış gibi düşünebilirsiniz . ilk Önce küçük bir form oluşturuyoruz .</p>
<div class="wp-caption alignnone" style="width: 668px"><img src="http://www.byumut.com/ornekler/ajax_alternatif/1.jpg" alt="" width="658" height="245" align="middle" /><p class="wp-caption-text">Resim 1</p></div>
<p>İste Farklı Olan Kısımı Anlatıyorum Size <strong>target="gizli_iframe" </strong>bu demek oluyorki formu <strong>gizli_iframe</strong> isimli bir frame 'ye gönder.Ve dönen sonucun nereye basılacağına gelelim . Bunun için de <strong>id="cikti" </strong>olan bir html tag koyuyoruz . ( span , div )</p>
<p>Şimdi ise gelelim bu işlemlerin arka yüzüne yani <strong>islem.php </strong>dosyasına ...</p>
<h3>İslem.php de sadece extra bir kod var !</h3>
<div class="wp-caption alignnone" style="width: 703px"><img src="http://www.byumut.com/ornekler/ajax_alternatif/2.jpg" alt="" width="693" height="282" align="middle" /><p class="wp-caption-text">Resim 2</p></div>
<p>islem.php de yaptıklarımıza bakalım şimdide. Kodlara baktığımızda görüyorsunuz ki <strong>islem.php </strong>çıktısı id=sonuc olan bir tag'ın içine yerleşiyor bizde o çıktıyı alıp geldiğimiz yer olan index.html diyelim oraya basıyoruz peki nasıl ?</p>
<div class="wp-caption alignnone" style="width: 670px"><img src="http://www.byumut.com/ornekler/ajax_alternatif/3.jpg" alt="" width="660" height="51" /><p class="wp-caption-text">Resim 3</p></div>
<p>İşte Bu kadar arkadaşlar sizlere umarım faydalı olabilimişimdir .</p>
<p>Eeee Sizce Hangisi ?</p>
<p>Ajax mı ? .... ?</p>
<ul>
<li><a href="http://www.byumut.com/ornekler/ajax_alternatif/index.html">Çalışan Örnek Bir Uygulama</a></li>
<li><a href="http://www.byumut.com/ornekler/ajax_alternatif/indir.rar">Kodları Zipli Şekilde İndirmek için Tıklayın !</a></li>
</ul>
<p><a href="http://www.byumut.com">Umut ÇETİNKAYA</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/toparlanma-ajax-olmasaydi-ne-yapardik/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
