<?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 form göndermek</title>
	<atom:link href="http://www.byumut.com/tag/javascript-form-gondermek/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.byumut.com</link>
	<description>&#34; En büyük risk, risk almamaktır.... &#34;</description>
	<lastBuildDate>Thu, 09 Feb 2012 22:12:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Javascript 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-2"><a href="#" onclick="javascript:showPlainTxt('php-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-2">
<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>

<p class="sayac_bilgi">74 views</p>
]]></content:encoded>
			<wfw:commentRss>http://www.byumut.com/javascript-ile-form-gondermek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

