<?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>Burhan KARADERE Kişisel Blog Sayfası &#187; ? Php ?</title>
	<atom:link href="http://www.karadere.com/blog/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.karadere.com/blog</link>
	<description>Bilişim - IT Bilgi Bloğu</description>
	<lastBuildDate>Wed, 01 Feb 2012 07:41:13 +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>Php Array örneği ? Php array example</title>
		<link>http://www.karadere.com/blog/php-array-ornegi-php-array-example.html</link>
		<comments>http://www.karadere.com/blog/php-array-ornegi-php-array-example.html#comments</comments>
		<pubDate>Wed, 18 Jan 2012 06:51:18 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[Programlama - Software]]></category>
		<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[kullanımı]]></category>
		<category><![CDATA[use]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1395</guid>
		<description><![CDATA[Arrays are used in any programming language. You can imagine an array as a long box with many the same compartments, like this &#124;___&#124;___&#124;___&#124;___&#124;___&#124;.What ever you put in a compartment is its value. The following array &#124;_a_&#124;_b_&#124;_c_&#124;_d_&#124;_e_&#124; contains characters a,b,c,d,e. To access a value you should know in which compartment it is placed. For <p><a href="http://www.karadere.com/blog/php-array-ornegi-php-array-example.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<div id="middle">Arrays are used in any programming language. You can imagine an array as a long box with many the same compartments, like this |___|___|___|___|___|.What ever you put in a compartment is its value. The following array |_a_|_b_|_c_|_d_|_e_| contains characters a,b,c,d,e. To access a value you should know in which compartment it is placed. For example &#8216;b&#8217; is in the second compartment. In most computer languages array index (counting) starts from 0, not from 1. Index of the first element of the array is 0, Index of the second element of the array is 1 and so on. In array of names below you can see indexes and values.To display &#8220;Anna&#8221; array value you have to access element (compartement) with index 3. print($names[3]); To display all array values &#8211; use for loop or print array function.</p>
<div id="code">//declare an array of names<br />
$names=array();$message=&#8221;Hello &#8220;;<br />
$prefix1=&#8221;Mr.&#8221;;<br />
$prefix2=&#8221;Mrs.&#8221;;$names[0]=&#8221;John&#8221;;<br />
$names[1]=&#8221;George&#8221;;<br />
$names[2]=&#8221;James&#8221;;<br />
$names[3]=&#8221;Anna&#8221;;<br />
$names[4]=&#8221;Robert&#8221;;<br />
$names[5]=&#8221;John&#8221;;<br />
$names[6]=&#8221;James&#8221;;<br />
$names[7]=&#8221;George&#8221;;<br />
$names[8]=&#8221;Maria&#8221;;<br />
$names[9]=&#8221;Peter&#8221;;<br />
$names[10]=&#8221;James&#8221;;</p>
<p>print(&#8216;&lt;br&gt;The sort function sorts array&lt;br&gt;&#8217;);<br />
sort($names);</p>
<p>//Get size of array<br />
$asize=sizeof($names);</p>
<p>for($i=0; $i&lt;$asize; $i++)    {<br />
//Check if it is female name put Mrs. prefix<br />
//else put Mr. prefix</p>
<p>if(($names[$i]==&#8221;Anna&#8221;)||($names[$i]==&#8221;Maria&#8221;))<br />
{<br />
print($message.$prefix2.$names[$i].&#8221;&lt;br&gt;&#8221;);<br />
}<br />
else<br />
{<br />
print($message.$prefix1.$names[$i].&#8221;&lt;br&gt;&#8221;);<br />
}<br />
}<br />
print(&#8216;&lt;br&gt;&#8217;);</p>
<p>echo &#8220;The array_unique function removes duplicate array values&lt;br&gt;&#8221;;</p>
<p>$array=array();</p>
<p>$array=array_unique($names);</p>
<p>foreach($array as $key =&gt; $value)<br />
{<br />
echo $key . &#8220;-&#8221;. $value . &#8220;&lt;br&gt;&#8221;;<br />
}</p>
<p>print(&#8216;&lt;br&gt;&#8217;);</p>
<p>rsort($array);</p>
<p>print(&#8220;The rsort function sorts array in reverse order&lt;br&gt;&#8221;);</p>
<p>foreach($array as $key =&gt; $value)<br />
{<br />
echo $key . &#8220;-&#8221;. $value . &#8220;&lt;br&gt;&#8221;;<br />
}</p>
<p>print(&#8216;&lt;br&gt;The array_pop($array) functions returns the last element&lt;br&gt;&#8217;);</p>
<p>$lastelement=array_pop($array);</p>
<p>print(&#8216;&lt;br&gt;The last element=&#8217;.$lastelement.&#8217;&lt;br&gt;&#8217;);</p>
<p>print(&#8216;&lt;br&gt;Array after calling array_pop($array): The last element removed&lt;br&gt;&lt;br&gt;&#8217;);</p>
<p>foreach($array as $key =&gt; $value)<br />
{<br />
echo $key . &#8220;-&#8221;. $value . &#8220;&lt;br&gt;&#8221;;<br />
}</p>
<p>//The <strong>Array_push</strong> function add elements to the end of an array<br />
//The <strong>print_r</strong> print array function prints array key &#8211; value pairs</p>
<p>array_push($array, &#8220;Chris&#8221;, &#8220;Colin&#8221;);</p>
<p>print_r($array);</p>
<p>print(&#8216;&lt;br&gt;&lt;br&gt;The array_rand($array) function returns random array index&lt;br&gt;&#8217;);</p>
<p>$random=array_rand($array);</p>
<p>print(&#8216;&lt;br&gt;print array element by random index&lt;br&gt;&#8217;);</p>
<p>print(&#8216;&lt;br&gt;Random element=&#8217;.$array[$random].&#8217;&lt;br&gt;&#8217;);</p>
<p>$string=implode($array);</p>
<p>print(&#8220;&lt;br&gt;Array imploded in string:&lt;br&gt;&#8221;);</p>
<p>print($string);</p>
<p>?&gt;</p>
</div>
<p>Autput:</p>
<p>The sort function sorts an array<br />
Hello Mrs.Anna<br />
Hello Mr.George<br />
Hello Mr.George<br />
Hello Mr.James<br />
Hello Mr.James<br />
Hello Mr.James<br />
Hello Mr.John<br />
Hello Mr.John<br />
Hello Mrs.Maria<br />
Hello Mr.Peter<br />
Hello Mr.Robert</p>
<p>The array_unique function removes duplicate values<br />
0-Anna<br />
1-George<br />
3-James<br />
6-John<br />
8-Maria<br />
9-Peter<br />
10-Robert</p>
<p>The rsort function sorts an array in reverse order<br />
0-Robert<br />
1-Peter<br />
2-Maria<br />
3-John<br />
4-James<br />
5-George<br />
6-Anna</p>
<p>The array_pop($array) functions returns the last element</p>
<p>The last element=Anna</p>
<p>Array after caling array_pop($array): The last element removed</p>
<p>0-Robert<br />
1-Peter<br />
2-Maria<br />
3-John<br />
4-James<br />
5-George</p>
<p>Array after calling array_push($array, &#8220;Chris&#8221;, &#8220;Colin&#8221;)<br />
and print_r: Chris and Colin are added to the end of array</p>
<p>Array ( [0] =&gt; Robert [1] =&gt; Peter [2] =&gt; Maria [3] =&gt; John [4] =&gt; James [5] =&gt; George [6] =&gt; Chris [7] =&gt; Colin )</p>
<p>The array_rand($array) function returns random array index</p>
<p>print array element by random index</p>
<p>Random element=Colin</p>
<p>Array imploded in string:</p>
<p>RobertPeterMariaJohnJamesGeorgeChrisColin</p>
</div>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/php-array-ornegi-php-array-example.html&amp;amp;t=Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example+-+http://&#x27A1;.ws/ῑ拴" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/php-array-ornegi-php-array-example.htmltitle=Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/php-array-ornegi-php-array-example.html&title=Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example&summary=Arrays+are+used+in+any+programming+language.+You+can+imagine+an+array+as+a+long+box+with+many+the+same+compartments%2C+like+this+%7C___%7C___%7C___%7C___%7C___%7C.What+ever+you+put+in+a+compartment+is+its+value.+The+f%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/php-array-ornegi-php-array-example.html&amp;amp;t=Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example&amp;u=http://www.karadere.com/blog/php-array-ornegi-php-array-example.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/php-array-ornegi-php-array-example.html&amp;title=Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Php Array örneği ? Php array example...&body=Arrays are used in any programming language. You can imagine an array as a long box with many the same compartments, like this |___|___|___|___|___|.What ever you put in a compartment is its value. The following array |_a_|_b_|_c_|_d[..] - http://www.karadere.com/blog/php-array-ornegi-php-array-example.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/php-array-ornegi-php-array-example.html&amp;title=Php+Array+%C3%B6rne%C4%9Fi+?+Php+array+example" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/php-array-ornegi-php-array-example.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php Mysql InnoDB ve MyISAM farkları</title>
		<link>http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html</link>
		<comments>http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html#comments</comments>
		<pubDate>Wed, 18 Jan 2012 06:44:36 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[Programlama - Software]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[primary key]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1721</guid>
		<description><![CDATA[InnoDB ve MyISAM <p>&#160;</p> <p>Olaya MyISAM yönüyle bakarsak;</p> MyISAM daha ziyade okuma (select) yapılan tablolarda tercih edilir çünkü InnoDB gibi farklı tablolarla ilişki kurmadığından daha hızlı şekilde okuma yapılabilir. MyISAM full text search özelliğine sahiptir. Transaction desteği yoktur; bu nedenle hızlı çalışsa bile yaptığınız işlemleri geri alamazsınız; veri bütünlüğü yoktur. Bir kayıt eklenirken veya <p><a href="http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<h3>InnoDB ve MyISAM</h3>
<div>
<p>&nbsp;</p>
<p>Olaya MyISAM yönüyle bakarsak;</p>
<ul>
<li>MyISAM daha ziyade okuma (select) yapılan tablolarda tercih edilir çünkü InnoDB gibi farklı tablolarla ilişki kurmadığından daha hızlı şekilde okuma yapılabilir.</li>
<li>MyISAM full text search özelliğine sahiptir.</li>
<li>Transaction desteği yoktur; bu nedenle hızlı çalışsa bile yaptığınız işlemleri geri alamazsınız; veri bütünlüğü yoktur.</li>
<li>Bir kayıt eklenirken veya update edilirken tüm tabloyu kilitlediği için fazla insert-update edilecek tablolarda performansı düşüktür.</li>
<li>Farklı kaynaklarda farklı rakamlar verilse de sakladığınız veri yaklaşık 2GB’ı geçtiği zaman performansı gözle görülür şekilde düşer.</li>
<li>Foreign key desteği yoktur.</li>
<li>Tasarlanması kolaydır.</li>
</ul>
<div>InnoDB yönüyle bakarsak;</div>
<div>
<ul>
<li>Transaction desteği vardır, veri bütünlüğü yönüyle MyISAM’dan çok daha avantajlıdır.</li>
<li>Foreign Key desteği vardır.</li>
<li>Veri tabanı tasarımı daha zordur.</li>
<li>Full text search özelliği yoktur.</li>
<li>Insert ve Update işlemlerinde sadece kayıt yapılan satırı kilitleyip tüm tabloyu kilitlemediği için daha performanslıdır.</li>
<li>MyISAM’a göre daha fazla sistem kaynağına ihtiyaç duyar.</li>
</ul>
</div>
</div>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html&amp;amp;t=Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1+-+http://&#x27A1;.ws/ျ➋" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.htmltitle=Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html&title=Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1&summary=InnoDB+ve+MyISAM%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AOlaya+MyISAM+y%C3%B6n%C3%BCyle+bakarsak%3B%0D%0A%0D%0A%09MyISAM+daha+ziyade+okuma+%28select%29+yap%C4%B1lan+tablolarda+tercih+edilir+%C3%A7%C3%BCnk%C3%BC+InnoDB+gibi+farkl%C4%B1+tablolarla+ili%C5%9Fki+kurmad%C4%B1%C4%9F%C4%B1n%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html&amp;amp;t=Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1&amp;u=http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html&amp;title=Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Php Mysql InnoDB ve MyISAM farkları...&body=InnoDB ve MyISAM


&nbsp;

Olaya MyISAM yönüyle bakarsak;

	MyISAM daha ziyade okuma (select) yapılan tablolarda tercih edilir çünkü InnoDB gibi farklı tablolarla ilişki kurmadığından daha hızlı şekilde okum[..] - http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html&amp;title=Php+Mysql+InnoDB+ve+MyISAM+farklar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/php-mysql-innodb-ve-myisam-farklari.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>htm ve html de php çalıştırma .htaccess ayarları</title>
		<link>http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html</link>
		<comments>http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 11:56:13 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[htm]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Seo]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1707</guid>
		<description><![CDATA[Edit the .htaccess file <p>default yol  :  /home/username/public_html</p> <p> .htaccess sayfasını bulun </p> aşağıdaki kodu ekleyin :</p> RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html  .htaccess kaydedin PHP kodunu  bit  .html de çalıştırma <p>örnek sayfa test.html</p>   test.html kodu : &#60;html&#62; &#60;head&#62; &#60;/head&#62; &#60;body&#62; &#60;h1&#62; &#60;?php echo "php cok guzel"; ?&#62; &#60;/h1&#62; &#60;/body&#62; <p><a href="http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<h2>Edit the .htaccess file</h2>
<p>default yol  :  /home/username/public_html</p>
<p> <kbd>.htaccess sayfasını bulun </kbd></p>
<div>aşağıdaki kodu ekleyin :</p>
<pre>RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html</pre>
<pre> <kbd>.htaccess kaydedin </kbd></pre>
</div>
<h2>PHP kodunu  bit  .html de çalıştırma</h2>
<p>örnek sayfa <kbd>test.html</kbd></p>
<div>
<pre><code></code> </pre>
<pre><code><span style="color: #000000;">test.html kodu : </span></code></pre>
<pre><code><span style="color: #000000;">&lt;html&gt; </span></code></pre>
<pre><code><span style="color: #000000;">&lt;head&gt;</span></code></pre>
<pre><code><span style="color: #000000;">&lt;/head&gt;</span></code></pre>
<pre><code><span style="color: #000000;">&lt;body&gt; &lt;h1&gt;</span></code></pre>
<pre><code><span style="color: #000000;"> <span style="color: #0000bb;">&lt;?php </span><span style="color: #007700;">echo </span><span style="color: #dd0000;">"php cok guzel"</span><span style="color: #007700;">; </span><span style="color: #0000bb;">?&gt;</span></span></code></pre>
<pre><code><span style="color: #000000;">&lt;/h1&gt; &lt;/body&gt; &lt;/html&gt; </span></code></pre>
</div>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html&amp;amp;t=htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1+-+http://&#x27A1;.ws/⦗噊" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.htmltitle=htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html&title=htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1&summary=Edit+the+.htaccess+file%0D%0Adefault+yol%C2%A0+%3A+%C2%A0%2Fhome%2Fusername%2Fpublic_html%0D%0A%0D%0A%C2%A0.htaccess+sayfas%C4%B1n%C4%B1+bulun+%0D%0Aa%C5%9Fa%C4%9F%C4%B1daki+kodu+ekleyin+%3A%0D%0ARemoveHandler+.html+.htm%0D%0AAddType+application%2Fx-httpd-ph%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html&amp;amp;t=htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1&amp;u=http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html&amp;title=htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=htm ve html de php çalıştırma .htaccess ...&body=Edit the .htaccess file
default yol  :  /home/username/public_html

 .htaccess sayfasını bulun 
aşağıdaki kodu ekleyin :
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html
[..] - http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html&amp;title=htm+ve+html+de+php+%C3%A7al%C4%B1%C5%9Ft%C4%B1rma+.htaccess+ayarlar%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/htm-ve-html-de-php-calistirma-htaccess-ayarlari.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to php linux .htaccess   rule.  Hide .php extension with url rewriting using .htaccess  redirect htm , html to php extention. .htaccess  kuralı rule nasıl yazılır.</title>
		<link>http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html</link>
		<comments>http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html#comments</comments>
		<pubDate>Wed, 07 Dec 2011 09:31:19 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[Programlama - Software]]></category>
		<category><![CDATA[.httpaccess]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[rule]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1703</guid>
		<description><![CDATA[<p>.htaccess  rule örnekleri aşağıdaki gibidir. </p> <p>Örneğin  http://localhost/test.htm   böyle bir istekte test.htm de php kodu çalıştırmak</p> <p>Options +FollowSymlinks RewriteEngine on RewriteRule ^(.*)\.htm$ $1.php [nc]</p> <p>Options +FollowSymlinks RewriteEngine on RewriteRule ^product-([0-9]+)\.html$ products.php?id=$1</p> <p align="justify">product.php?id=5  olan isteği      porduct-5.html  ile çağırdığımızda  nasıl çalışır</p> <p align="justify">http://localhost/product-5.html </p> <p align="justify"> product.php?id=5  arkaplanda bu <p><a href="http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;"><strong>.htaccess  rule örnekleri aşağıdaki gibidir. </strong></span></p>
<p><span style="color: #000000;"><strong>Örneğin </strong></span> <a href="http://localhost/test.htm">http://localhost/test.htm</a>   böyle bir istekte test.htm de php kodu çalıştırmak</p>
<p><span style="color: #800000;">Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteRule ^(.*)\.htm$ $1.php [nc]</span></p>
<p><span style="color: #800000;">Options +FollowSymlinks<br />
RewriteEngine on<br />
RewriteRule ^product-([0-9]+)\.html$ products.php?id=$1</span></p>
<p align="justify">product.php?id=5  olan isteği      porduct-5.html  ile çağırdığımızda  nasıl çalışır</p>
<p align="justify"><a href="http://localhost/product-5.html">http://localhost/product-5.html</a> </p>
<p align="justify"> <span style="color: #993366;">product.php?id=5</span>  arkaplanda bu çalışır</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html&amp;amp;t=How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r." target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r.+-+http://&#x27A1;.ws/웃⻱" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.htmltitle=How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r." target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html&title=How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r.&summary=.htaccess%C2%A0+rule+%C3%B6rnekleri+a%C5%9Fa%C4%9F%C4%B1daki+gibidir.+%0D%0A%0D%0A%C3%96rne%C4%9Fin+%C2%A0http%3A%2F%2Floc%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html&amp;amp;t=How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r." target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r.&amp;u=http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html&amp;title=How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r." target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=How to php linux .htaccess   rule.  Hide .php extension with...&body=.htaccess  rule örnekleri aşağıdaki gibidir. 

Örneğin  http://localhost/test.htm   böyle[..] - http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html&amp;title=How+to+php+linux+.htaccess+++rule.++Hide+.php+extension+with+url+rewriting+using+.htaccess++redirect+htm+%2C+html+to+php+extention.+.htaccess++kural%C4%B1+rule+nas%C4%B1l+yaz%C4%B1l%C4%B1r." target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/how-to-php-linux-htaccess-rule-hide-php-extension-with-url-rewriting-using-htaccess-redirect-htm-html-to-php-extention-htaccess-kurali-rule-nasil-yazilir.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php ile permayapmak ?</title>
		<link>http://www.karadere.com/blog/php-ile-permayapmak.html</link>
		<comments>http://www.karadere.com/blog/php-ile-permayapmak.html#comments</comments>
		<pubDate>Wed, 07 Dec 2011 08:11:09 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[permayap]]></category>
		<category><![CDATA[permlink]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1700</guid>
		<description><![CDATA[&#60;?php  function permayap($deger) {  $turkce=array("ş","Ş","ı","(",")","'","ü","Ü","ö","Ö","ç","Ç"," ","/","*","?","ş","Ş","ı","ğ","Ğ","İ","ö","Ö","Ç","ç","ü","Ü");  $duzgun=array("s","S","i","","","","u","U","o","O","c","C","-","-","-","","s","S","i","g","G","I","o","O","C","c","u","U");  $deger=str_replace($turkce,$duzgun,$deger);  $deger = preg_replace("@[^A-Za-z0-9-_]+@i","",$deger);  return $deger;  }  ?&#62; ArrayArrayArrayArrayArrayArrayArray]]></description>
			<content:encoded><![CDATA[<pre>&lt;?php 

function permayap($deger) { 

$turkce=array("ş","Ş","ı","(",")","'","ü","Ü","ö","Ö","ç","Ç"," ","/","*","?","ş","Ş","ı","ğ","Ğ","İ","ö","Ö","Ç","ç","ü","Ü"); 

$duzgun=array("s","S","i","","","","u","U","o","O","c","C","-","-","-","","s","S","i","g","G","I","o","O","C","c","u","U"); 

$deger=str_replace($turkce,$duzgun,$deger); 

$deger = preg_replace("@[^A-Za-z0-9-_]+@i","",$deger); 

return $deger; 

} 

?&gt;</pre>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/php-ile-permayapmak.html&amp;amp;t=Php+ile+permayapmak+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Php+ile+permayapmak+?+-+http://&#x27A1;.ws/柢綼" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/php-ile-permayapmak.htmltitle=Php+ile+permayapmak+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/php-ile-permayapmak.html&title=Php+ile+permayapmak+?&summary=%26lt%3B%3Fphp%C2%A0%0D%0A%0D%0Afunction+permayap%28%24deger%29+%7B%C2%A0%0D%0A%0D%0A%24turkce%3Darray%28%22%C5%9F%22%2C%22%C5%9E%22%2C%22%C4%B1%22%2C%22%28%22%2C%22%29%22%2C%22%27%22%2C%22%C3%BC%22%2C%22%C3%9C%22%2C%22%C3%B6%22%2C%22%C3%96%22%2C%22%C3%A7%22%2C%22%C3%87%22%2C%22+%22%2C%22%2F%22%2C%22%2A%22%2C%22%3F%22%2C%22%C5%9F%22%2C%22%C5%9E%22%2C%22%C4%B1%22%2C%22%C4%9F%22%2C%22%C4%9E%22%2C%22%C4%B0%22%2C%22%C3%B6%22%2C%22%C3%96%22%2C%22%C3%87%22%2C%22%C3%A7%22%2C%22%C3%BC%22%2C%22%C3%9C%22%29%3B%C2%A0%0D%0A%0D%0A%24duzgun%3Darray%28%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/php-ile-permayapmak.html&amp;amp;t=Php+ile+permayapmak+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Php+ile+permayapmak+?&amp;u=http://www.karadere.com/blog/php-ile-permayapmak.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/php-ile-permayapmak.html&amp;title=Php+ile+permayapmak+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Php ile permayapmak ?...&body=&lt;?php 

function permayap($deger) { 

$turkce=array("ş","Ş","ı","(",")","'","ü","Ü","ö","Ö","ç","Ç"," ","/","*","?","ş","Ş","ı","ğ","Ğ","İ","ö","Ö","Ç","ç","ü","Ü"); 

$duzgun=array("s","S","i","","","","u","U","[..] - http://www.karadere.com/blog/php-ile-permayapmak.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/php-ile-permayapmak.html&amp;title=Php+ile+permayapmak+?" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/php-ile-permayapmak.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frontpage 2003 ile Php kullanımı. Using PHP with FrontPage 2003</title>
		<link>http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html</link>
		<comments>http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html#comments</comments>
		<pubDate>Thu, 10 Nov 2011 07:42:45 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[% Asp %]]></category>
		<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[Programlama - Software]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[frontpage 2003]]></category>
		<category><![CDATA[yazmak]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1583</guid>
		<description><![CDATA[What is PHP? PHP is a server-side scripting language (scripting language: A simple programming language designed to perform special or limited tasks, sometimes associated with a particular application or function.) that you can embed into HTML when you create dynamic Web pages. PHP is an open-source product that you can use, alter, and redistribute without charge. Originally PHP stood for Personal Home Page tool, but over time it has evolved to stand for PHP: Hypertext Preprocessor. In general, dynamic Web pages are pages that interact with users, so that each site visitor sees customized information. In the case of PHP, dynamic also means that data is pulled from a database. Dynamic Web applications are prevalent in commercial (e-commerce) sites, where the content displayed is generated from information that is accessed from a database or other external source. PHP's syntax is similar to that of C and Perl, making it easy to learn for anyone with basic programming skills. PHP supports only partial encapsulation (such as support for declaring methods and fields in the class) and partial polymorphism (no overloading, no abstraction). With PHP, there is no concept of private, public, or protected functions in classes as well as in the overloading.  <p><a href="http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<p>Merhaba arkadaşlar hala frontpage kullanyorsanız benim gibi vazgeçemiyorsanız 2003 frontpage ile php yazmanın yolu aşağıdaki gibidir.</p>
<p>koay gelsin .</p>
<p>Microsoft kaynak / source : <a href="http://office.microsoft.com/en-au/frontpage-help/using-php-with-frontpage-2003-HA001109299.aspx">http://office.microsoft.com/en-au/frontpage-help/using-php-with-frontpage-2003-HA001109299.aspx</a></p>
<p>This article was adapted from <em>Microsoft Office FrontPage 2003 Inside Out </em>by Jim Buyens. Visit Microsoft Learning to learn more about this book.</p>
<p>You can use PHP to build sophisticated and complex Web applications and external and internal business channels, such as e-commerce sites, corporate portals, and intranets. Microsoft offers an alternative to scripting with PHP — ASP.NET — which is described in more detail later in this article. As might be expected, FrontPage supports the Active Server Pages (ASP) and ASP.NET technologies more completely than it does PHP. However, if you reconfigure certain settings, FrontPage and PHP can work together.</p>
<h2>What is PHP?</h2>
<p>PHP is a server-side scripting language (scripting language: A simple programming language designed to perform special or limited tasks, sometimes associated with a particular application or function.) that you can embed into HTML when you create dynamic Web pages. PHP is an open-source product that you can use, alter, and redistribute without charge. Originally PHP stood for <em>Personal Home Page</em> tool, but over time it has evolved to stand for <em>PHP: Hypertext Preprocessor</em>.</p>
<p>In general, dynamic Web pages are pages that interact with users, so that each site visitor sees customized information. In the case of PHP, dynamic also means that data is pulled from a database. Dynamic Web applications are prevalent in commercial (e-commerce) sites, where the content displayed is generated from information that is accessed from a database or other external source.</p>
<p>PHP&#8217;s syntax is similar to that of C and Perl, making it easy to learn for anyone with basic programming skills. PHP supports only partial encapsulation (such as support for declaring methods and fields in the class) and partial polymorphism (no overloading, no abstraction). With PHP, there is no concept of private, public, or protected functions in classes as well as in the overloading.</p>
<h2>Create pages that contain PHP scripts</h2>
<p>When you use PHP with FrontPage 2003, you create the overall Web page design and insert any fixed elements by using <strong>Design</strong> view in FrontPage. You can then write the HTML code that contains the variable portion of each PHP response in <strong>Code</strong> view. Of course, when you are laying out the Web page design, you may want to create placeholders to indicate where the variable output should appear, so that you can easily locate where you want to add the PHP script.</p>
<p>PHP scripts must reside in an executable directory. For reasons of security and resource consumption, many server administrators tightly control access to such directories. If you do not administer your own Web server, you need permission from the server administrator to run server-side scripts.</p>
<h2>Change settings in FrontPage 2003</h2>
<p>Before you can use PHP with FrontPage 2003, you must make the following changes to settings in FrontPage:</p>
<p><img id="divExpCollAsst_842386058_img" title="Hide" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" alt="Hide" border="0" />Disable features that require the FrontPage Server Extensions</p>
<div id="divExpCollAsst_842386058">
<p>If the Web server that runs your PHP pages has the FrontPage Server Extensions from Microsoft installed, do the following:</p>
<ol type="1">
<li>On the <strong>Tools</strong> menu, click <strong>Page Options</strong>, and then click the <strong>Authoring</strong> tab.</li>
<li>Under <strong>FrontPage and SharePoint technologies</strong>, clear the <strong>SharePoint Services</strong> and <strong>Browse-time Web Components</strong> check boxes.</li>
</ol>
</div>
<p><img id="divExpCollAsst_387715001_img" title="Hide" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" alt="Hide" border="0" />Disable features that create ASP or ASP.NET code</p>
<div id="divExpCollAsst_387715001">
<p>If the Web server that runs your PHP pages can also run ASP, do the following:</p>
<ol type="1">
<li>On the <strong>Tools</strong> menu, click <strong>Page Options</strong>, and then click the <strong>Authoring</strong> tab.</li>
<li>Under <strong>Browsers</strong>, clear the <strong>Active Server Pages</strong> check box.</li>
</ol>
</div>
<p><img id="divExpCollAsst_400278025_img" title="Hide" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" alt="Hide" border="0" />Enable and use ASP-style <code>&lt;% %&gt;</code> code delimiters</p>
<div id="divExpCollAsst_400278025">
<p>Do the following:</p>
<ol type="1">
<li>Open the php.ini (php.ini: The master configuration file for PHP that you can customize to help you control the way PHP works on your site.) file on the Web server, and set <code>asp_tags="1"</code>.</li>
<li>Use ASP-like &lt;% and %&gt; tags instead of the &lt;? php?&gt; tags. This stops FrontPage from reformatting your PHP code.</li>
</ol>
<p><strong> Note </strong>  As an alternative, you can use &lt;script language=&#8221;php&#8221;&gt; and &lt;/script&gt; tags instead of &lt;? php?&gt; tags.</p>
</div>
<p><img id="divExpCollAsst_55285853_img" title="Hide" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" alt="Hide" border="0" />Configure PHP file extensions to open in Design view</p>
<div id="divExpCollAsst_55285853">
<ol type="1">
<li>On the <strong>Tools</strong> menu, click <strong>Options</strong>, and then click the <strong>Configure Editors</strong> tab.</li>
<li>In the <strong>Extensions</strong> list, locate and select the file extension that you want to use.</li>
<li>In the<strong> Editors</strong> list, select <strong>FrontPage (Open as HTML)</strong>.</li>
<li>Click <strong>Make Default</strong>.</li>
</ol>
<p>If the extension that you want does not appear, you must add it.</p>
<p><img id="divExpCollAsst_407456711_img" title="Hide" src="http://officeimg.vo.msecnd.net/en-au/files/218/224/ZA079005001.gif" alt="Hide" border="0" />How?</p>
<div id="divExpCollAsst_407456711">
<ol type="1">
<li>Click the <strong>New Extension</strong> button (or press ALT+N), located above the <strong>Extensions</strong> list.</li>
<li>In the <strong>Open With</strong> dialog box, type the file extension that you want in the <strong>Extension</strong> box.</li>
<li>Select <strong>FrontPage (Open as HTML)</strong>, and then click <strong>OK</strong>.</li>
</ol>
</div>
</div>
<h2>ASP.NET — an alternative to PHP</h2>
<p>If you are using PHP with FrontPage and find that it prevents you from accomplishing what you want in your Web site, you might consider using ASP.NET instead.</p>
<p>ASP.NET is part of the Microsoft .NET Framework, which is a feature of Microsoft Windows®. Unlike PHP, ASP.NET is not a language or a parser but rather a set of technologies in the Microsoft .NET Framework for building Web applications and XML Web services.</p>
<p>Microsoft ASP.NET pages run on the server like PHP and generate markup, such as HTML, WML, or XML, which is sent to a desktop or to mobile applications. ASP.NET provides a robust, object-oriented, event-driven programming model for developing Web pages, while still maintaining the simplicity that PHP developers are accustomed to.</p>
<p>ASP.NET applications are based on a robust Object Oriented Programming (OOP) paradigm rather than a scripting paradigm. This allows for more advanced OOP features, such as inheritance, encapsulation, and reflection.</p>
<p>If you are considering migrating to ASP.NET, in most cases it is not very complex for simple to small applications. Due to underlying architectural differences as well as the ASP.NET OOP paradigm, more sophisticated and complex applications must be well planned to take advantage of the more rigorous separation of display from logic and data in ASP.NET, as well as its time-saving, built-in functionality that significantly reduces the amount of code necessary to perform comparable tasks.</p>
<p>For more information about ASP.NET, see the following:</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html&amp;amp;t=Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003+-+http://&#x27A1;.ws/躆漄" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.htmltitle=Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html&title=Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003&summary=Merhaba+arkada%C5%9Flar+hala+frontpage+kullanyorsan%C4%B1z+benim+gibi+vazge%C3%A7emiyorsan%C4%B1z+2003+frontpage+ile+php+yazman%C4%B1n+yolu+a%C5%9Fa%C4%9F%C4%B1daki+gibidir.%0D%0A%0D%0Akoay+gelsin+.%0D%0A%0D%0AMicrosoft+kaynak+%2F+source+%3A+&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html&amp;amp;t=Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003&amp;u=http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html&amp;title=Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Frontpage 2003 ile Php kullanımı. Using PHP with F...&body=Merhaba arkadaşlar hala frontpage kullanyorsanız benim gibi vazgeçemiyorsanız 2003 frontpage ile php yazmanın yolu aşağıdaki gibidir.

koay gelsin .

Microsoft kaynak / source :  - http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html&amp;title=Frontpage+2003+ile+Php+kullan%C4%B1m%C4%B1.+Using+PHP+with+FrontPage+2003" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/frontpage-2003-ile-php-kullanimi-using-php-with-frontpage-2003.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php class içinde global değişken kullanımı ? Php Class Kullanımı</title>
		<link>http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html</link>
		<comments>http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 12:07:26 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[Programlama - Software]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[değişken]]></category>
		<category><![CDATA[global]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1566</guid>
		<description><![CDATA[Php class içinde global değişken kullanımı ? Php Class Kullanımı <p><a href="http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<p>&lt;?php<br />
$desigken = &#8216;ben globalim&#8217;;<br />
echo $desigken  ;<br />
class Rehber {</p>
<p>var $adi = &#8216;Burhan&#8217;;<br />
function yaz(){<br />
global  $desigken ;</p>
<p>echo $this-&gt;adi ;<br />
echo  $desigken ;</p>
<p>}<br />
}</p>
<p>$reh = new Rehber();<br />
$reh-&gt;yaz();<br />
?&gt;</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html&amp;amp;t=Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1+-+http://&#x27A1;.ws/䶪궊" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.htmltitle=Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html&title=Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1&summary=%26lt%3B%3Fphp%0D%0A%24desigken+%3D+%27ben+globalim%27%3B%0D%0Aecho+%24desigken%C2%A0+%3B%0D%0Aclass+Rehber+%7B%0D%0A%0D%0Avar+%24adi+%3D+%27Burhan%27%3B%0D%0Afunction+yaz%28%29%7B%0D%0Aglobal%C2%A0+%24desigken+%3B%0D%0A%0D%0Aecho+%24this-%26gt%3Badi+%3B%0D%0Aecho%C2%A0+%24desigken+%3B%0D%0A%0D%0A%7D%0D%0A%7D%0D%0A%0D%0A%24reh+%3D+new+Rehber%28%29%3B%0D%0A%24reh-%26%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html&amp;amp;t=Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1&amp;u=http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html&amp;title=Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Php class içinde global değişken kullanı...&body=&lt;?php
$desigken = 'ben globalim';
echo $desigken  ;
class Rehber {

var $adi = 'Burhan';
function yaz(){
global  $desigken ;

echo $this-&gt;adi ;
echo  $desigken ;

}
}

$reh = new Rehber();
$reh-&gt;yaz();
?&gt;[..] - http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html&amp;title=Php+class+i%C3%A7inde+global+de%C4%9Fi%C5%9Fken+kullan%C4%B1m%C4%B1+?+Php+Class+Kullan%C4%B1m%C4%B1" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/php-class-icinde-global-degisken-kullanimi-php-class-kullanimi.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php ile array ile array değiştirme. Replace array to array</title>
		<link>http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html</link>
		<comments>http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html#comments</comments>
		<pubDate>Wed, 28 Sep 2011 11:08:14 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[replace]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1441</guid>
		<description><![CDATA[<?php $dizi1 = array("adi" => "burhan", "soyadi" => "karadere"); $dizi2 = array("adi" => "BurHaN","id" => "250"); function polecat_array_replace( array &#038;$array1, array &#038;$array2 ) { if(!function_exists('tier_parse')){ function tier_parse(array &#038;$t_array1, array&#038;$t_array2) { foreach ($t_array2 as $k2 => $v2) { if (is_array($t_array2[$k2])) { tier_parse($t_array1[$k2], $t_array2[$k2]); } else { $t_array1[$k2] = $t_array2[$k2]; } } return $t_array1; } } foreach ($array2 as $key => $val) { if (is_array($array2[$key])) { tier_parse($array1[$key], $array2[$key]); } else { $array1[$key] = $array2[$key]; } } return $array1; } print_r($dizi1); print_r($dizi2); polecat_array_replace($dizi1,$dizi2); print_r($dizi1) ; ?>  <p><a href="http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<p>&lt;?php</p>
<p>$dizi1 = array(&#8220;adi&#8221; =&gt; &#8220;burhan&#8221;, &#8220;soyadi&#8221; =&gt; &#8220;karadere&#8221;);<br />
$dizi2 = array(&#8220;adi&#8221; =&gt; &#8220;BurHaN&#8221;,&#8221;id&#8221; =&gt; &#8220;250&#8243;);</p>
<p>function polecat_array_replace( array &amp;$array1, array &amp;$array2 ) {<br />
if(!function_exists(&#8216;tier_parse&#8217;)){<br />
function tier_parse(array &amp;$t_array1, array&amp;$t_array2) {<br />
foreach ($t_array2 as $k2 =&gt; $v2) {<br />
if (is_array($t_array2[$k2])) {<br />
tier_parse($t_array1[$k2], $t_array2[$k2]);<br />
} else {<br />
$t_array1[$k2] = $t_array2[$k2];<br />
}<br />
}<br />
return $t_array1;<br />
}<br />
}</p>
<p>foreach ($array2 as $key =&gt; $val) {<br />
if (is_array($array2[$key])) {<br />
tier_parse($array1[$key], $array2[$key]);<br />
} else {<br />
$array1[$key] = $array2[$key];<br />
}<br />
}<br />
return $array1;<br />
}</p>
<p>print_r($dizi1);<br />
print_r($dizi2);<br />
polecat_array_replace($dizi1,$dizi2);</p>
<p>print_r($dizi1) ;</p>
<p>?&gt;</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html&amp;amp;t=Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array+-+http://&#x27A1;.ws/᫖얿" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.htmltitle=Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html&title=Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array&summary=%26lt%3B%3Fphp%0D%0A%0D%0A%24dizi1+%3D+array%28%22adi%22+%3D%26gt%3B+%22burhan%22%2C+%22soyadi%22+%3D%26gt%3B+%22karadere%22%29%3B%0D%0A%24dizi2+%3D+array%28%22adi%22+%3D%26gt%3B+%22BurHaN%22%2C%22id%22+%3D%26gt%3B+%22250%22%29%3B%0D%0A%0D%0Afunction+polecat_array_replace%28+array+%26amp%3B%24array1%2C+array+%26amp%3B%24array2+%29+%7B%0D%0Aif%28%21func%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html&amp;amp;t=Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array&amp;u=http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html&amp;title=Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Php ile array ile array değiştirme. Replace array ...&body=&lt;?php

$dizi1 = array("adi" =&gt; "burhan", "soyadi" =&gt; "karadere");
$dizi2 = array("adi" =&gt; "BurHaN","id" =&gt; "250");

function polecat_array_replace( array &amp;$array1, array &amp;$array2 ) {
if(!function_exists('tier_parse')){
f[..] - http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html&amp;title=Php+ile+array+ile+array+de%C4%9Fi%C5%9Ftirme.+Replace+array+to+array" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/php-ile-array-ile-array-degistirme-replace-array-to-array.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php array kullanımı ? how to array php ?</title>
		<link>http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html</link>
		<comments>http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html#comments</comments>
		<pubDate>Tue, 20 Sep 2011 06:57:05 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[Programlama - Software]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[kullanımı]]></category>
		<category><![CDATA[use]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1387</guid>
		<description><![CDATA[<p>$changetitle = array(&#8220;adsoyad&#8221; =&#62; &#8220;Adı Soyadı&#8221;, &#8220;kadi&#8221; =&#62; &#8220;Kullanıcı Adı&#8221;,); print_r($changetitle) ;</p> ArrayArrayArrayArrayArrayArrayArrayArrayArray]]></description>
			<content:encoded><![CDATA[<p>$changetitle = array(&#8220;adsoyad&#8221; =&gt; &#8220;Adı Soyadı&#8221;, &#8220;kadi&#8221; =&gt; &#8220;Kullanıcı Adı&#8221;,);<br />
print_r($changetitle) ;</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html&amp;amp;t=Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?+-+http://&#x27A1;.ws/夔袏" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.htmltitle=Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html&title=Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?&summary=%24changetitle+%3D+array%28%22adsoyad%22+%3D%26gt%3B+%22Ad%C4%B1+Soyad%C4%B1%22%2C+%22kadi%22+%3D%26gt%3B+%22Kullan%C4%B1c%C4%B1+Ad%C4%B1%22%2C%29%3B%0D%0Aprint_r%28%24changetitle%29+%3B%5B..%5D&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html&amp;amp;t=Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?&amp;u=http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html&amp;title=Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Php array kullanımı ? how to array php ?...&body=$changetitle = array("adsoyad" =&gt; "Adı Soyadı", "kadi" =&gt; "Kullanıcı Adı",);
print_r($changetitle) ;[..] - http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html&amp;title=Php+array+kullan%C4%B1m%C4%B1+?+how+to+array+php+?" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/php-array-kullanimi-how-to-array-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu apache 2, php, mysql, phpmyadmin kurulumu ? How to install on apache 2, php,  mysql  and phpmyadmin ?</title>
		<link>http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html</link>
		<comments>http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html#comments</comments>
		<pubDate>Sun, 18 Sep 2011 07:49:27 +0000</pubDate>
		<dc:creator>Burhan KARADERE</dc:creator>
				<category><![CDATA[? Php ?]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[directory browser]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[vsftpd]]></category>

		<guid isPermaLink="false">http://www.karadere.com/blog/?p=1355</guid>
		<description><![CDATA[Ubuntu command shell den aşağıdaki komutları sıra ile çalıştırmanız yeterli olacak. sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install libapache2-mod-php5 sudo /etc/init.d/apache2 restart <p><a href="http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html">[..]Devamını Oku</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Ubuntu command shell den aşağıdaki komutları sıra ile çalıştırmanız yeterli olacak.</strong><br />
<strong>Ubuntuya Apache apache 2 ve Php servis kurlumu nasıl yapılır ?</strong></p>
<p><strong></strong><strong>sudo apt-get install apache2</strong><br />
<strong>sudo apt-get install php5</strong><br />
<strong>sudo apt-get install libapache2-mod-php5</strong><br />
<strong>sudo /etc/init.d/apache2 restart</strong></p>
<p>kurulumlar tamamlandıktan sonra ifconfig ile local ipnizi öğreninsonra firefoxu açın http:\\ipadresiniz benimki şuanda http:\\192.168.2.4  aşağıdkai mesaş çıkıyorsa apache php dosayalrını comepile edip html olarak broewsera gönderiyor demektir.</p>
<p><strong>It works!</strong></p>
<p><strong>This is the default web page for this server.</strong><br />
<strong>The web server software is running but no content has been added, yet</strong>.<br />
<strong>apache ve php kurulumu tamamlanmıştır.Şimdi gelelim MySQL kurulumuna ; ubuntuya Mysql Kurulumu nasıl yapılır ?</strong></p>
<p>yine sudo hakları ile aşağıdaki komutu çalıştıralım<br />
sudo apt-get install mysql-server mysql-client libmysqlclient15-dev<br />
bu ekrandan sonra size bir root passwordu soracaktir buda mysql admin passwordudur şifre verin ve asla<br />
unutmayın aşağıdaki adresten mysql  dış dünyaya port ayarlarını yapmanıza olanak sağlar şuanda</p>
<p>localde çalışır<br />
vim /etc/mysql/my.cnf####vey</p>
<p>a#####gedit /etc/mysql/my.cnf</p>
<p>servis restart komutunu çalıştırım<br />
<strong>sudo /etc/init.d/mysql restart</strong><br />
mysql in şuanda nerden servis olarak çalıştığğını öğrenmek için aşağıdkai komutu çalıştırın</p>
<p><strong>sudo netstat -tap | grep mysql</strong><br />
şuanda mysql servis olarka çalışmakta ve sadece consaldan bağlantı oluşturup<br />
database işlemleri yapabilirsiniz. aşağıdaki komutlar ile<br />
mysql -u MYSQLUSERNAME -p<br />
### örnek : mysql -u root -p<br />
web üzerinden db işlemleri içim phpmyadmin sayfasından da bağlanabilirsiniz.<br />
Bunun için ise phpmyadmin kurmamız gerekiyor.<br />
Ubuntu üzerine myadmin kurulumu nasıl yapılır ?<br />
<strong>sudo apt-get install phpmyadmin</strong></p>
<p>http://localhost/phpmyadmin   ile çalıştıra bilirsini http://127.0.0.1/phpmyadmin</p>
<p>veya local ip http://192.168.2.4/phpmyadmin</p>
<p><center><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/s9GK_qdcXR4" width="425" height="355" wmode="transparent"><param name="movie" value="http://www.youtube.com/v/s9GK_qdcXR4" /></object></center></p>
<p>&nbsp;</p>
<p><strong>apache ayarlarının yapılması</strong></p>
<p><strong>directory browser </strong></p>
<p><strong>sudo gedit  /etc/apache2/sites-available/default </strong></p>
<p>directory tagını bulun</p>
<p><em>&lt;Directory /[some directory name]&gt; </em></p>
<p><em>option tagını bulun</em></p>
<p>indexi açmak için  şu şekilde değiştirin <strong>  ‘Indexes’ to ‘-Indexes’</strong></p>
<p><em>sonra apache yeniden başlatıyoruz </em></p>
<p><em>sudo /etc/init.d/apache2 restart</em></p>
<p><center><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/w1j7WcdUo7g" width="425" height="355" wmode="transparent"><param name="movie" value="http://www.youtube.com/v/w1j7WcdUo7g" /></object></center></p>
<p><center><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/S3IQSOFAB5M" width="425" height="355" wmode="transparent"><param name="movie" value="http://www.youtube.com/v/S3IQSOFAB5M" /></object></center></p>
<p><center><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/40Y4EskBB8A" width="425" height="355" wmode="transparent"><param name="movie" value="http://www.youtube.com/v/40Y4EskBB8A" /></object></center></p>
<p> varsayılan apache hata logları <strong>/etc/httpd/logs/error_log  </strong> düşer</p>
<p>bu log path değiştirmek için  <strong>/etc/httpd/conf/httpd.conf       </strong>kullanabilirsiniz.</p>
<p><strong>Ubuntuya FTP kurulumu yapmak </strong></p>
<p><strong>sudo ap-get install vsftpd</strong></p>
<p><center><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/tanll-JM8y8" width="425" height="355" wmode="transparent"><param name="movie" value="http://www.youtube.com/v/tanll-JM8y8" /></object></center></p>
<p><center><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/rtHywU7EjVw" width="425" height="355" wmode="transparent"><param name="movie" value="http://www.youtube.com/v/rtHywU7EjVw" /></object></center></p>
<p><strong>Ftp userına hak vermek</strong></p>
<p><code>sudo chown -R USERNAME /var/www<br />
sudo chmod -R 777 /var/www<br />
</code></p>
<p>&nbsp;</p>
<p>daha fazla detay için : <a href="http://www.karadere.com/blog/ubuntu-ya-vsftpd-ftp-server-kurmak-secure-ftp-kurmak-howto-install-vsftpd-install-secure-ftp-server.html">http://www.karadere.com/blog/ubuntu-ya-vsftpd-ftp-server-kurmak-secure-ftp-kurmak-howto-install-vsftpd-install-secure-ftp-server.html</a> yazılı makalemi okuyabilrisniz.</p>
<p><strong>VSFTPD Kurulumu ve ayarları </strong></p>
<div id="pid_8"><strong>VSFTPD = Very Secure File Transfer Protokol Daemon</strong>İlkönce paketin kurulumu ile başlayalım.#apt-get update<br />
#apt-get install vsftpd</p>
<p>veya<br />
synaptic üzerinden yapabilirsiniz. Hangisi kolayınıza geliyorsa.<br />
Paketleri indirip kuruluma otomatik olarak başlamaktadır. Bu esnada standalone veya init.d üzeinden çalıştırmanızı soracaktır. İnit.d&#8217;yi seçerek kurulumu bitirmesini bekleyiniz.</p>
<p>Şimdi de /etc/vsftpd/vsftpd.conf altında bulunan konfigürasyon dosyasını istediğimiz şekilde düzenleyelim. Bu satırlarda kullanımı gerekli veya kullanmak isteyebileceğiniz satırları açıklamaya çalıştım. Bazınları öntanımlı gelirken bazılarını değiştirmek isteyebilirsiniz.</p>
<p>inetd veya standalone olarak çalıştırmak için aşağıdaki satır öntanımlı olarak gelmektedir.<br />
listen=YES</p>
<p>Anonymous hesabından giriş yapılabilmesi için;<br />
anonymous_enable=YES</p>
<p>Local kullanıcıların ftp server&#8217;a ulaşabilmesi için;<br />
local_enable=YES</p>
<p>Kullanıcıların kendi klasörlerine yazma hakkı olabilmesi için aşağıdaki gibi olmalıdır.<br />
write_enable=YES</p>
<p>Kullanıcı verilen haklardır. Verilen değer 777&#8242;den çıkartıldığında kullanıcının klasör üzerindeki haklarını görebiliriz. Bu da 755 dir. Yani kullanıcı bu klasör üzerinde her hakka sahip olurken diğer kullanıcıların sadece okuma hakları bulunmaktadır.<br />
local_umask=022</p>
<p>Malum klasörlere gidildiğinde uak kullanıcılara verilecek olan aktif mesajlar<br />
dirmessage_enable=YES</p>
<p>Eğer bu satır aktif ise vsftpd sistem zamanınınızı default sayarak klasörleri buna göre dinler ve size yansıtır. Gösterilen default zaman dilimi GMT&#8217;dir. İsteğe bağlı olarak bu seçenek ftp command üzerinden MDTM olarak değiştirilebilir.<br />
use_localtime=YES</p>
<p>Yapılan bağlantıların upload ve download loglarını tutmak için seçeneği “YES” yapınız.<br />
xferlog_enable=YES</p>
<p>Eğer ftp server&#8217;a 20 nolu portdan bağlanılmasını istemiyorsak bu “NO” olarak değiştirmeliyiz.<br />
connect_from_port_20=YES</p>
<p>Kullanıcıyı karşılama mesajınız<br />
ftpd_banner=Debian ftp server&#8217;a hoşgeldiniz.</p>
<p>Aşağıdaki satırı “YES” olarak aktif hale getirmezsek eğer bağlanan kullanıcılar kendi klasörlerinden çıkıp farklı klasörlere ulaşabilirler. Bu da sistemimizde güvenlik açığına neden olur.<br />
chroot_local_user=YES</p>
<p>Şifre ile ftp server&#8217;a bağlanan kullanıcıların bağlantı hızlarına limit koymak istersek eğer;<br />
local_max_rate= bağlantı hızı byte cinsinden</p>
<p>Anonymous hesabından bağlananlar için ise ;<br />
anon_max_rate= yine byte cinsinden</p>
<p># Debian kişiselleştirme</p>
<p>Vsftpd tarafından bu dosya sistemine eişilmediği zamanlarda kullanımı kilitlenir.<br />
secure_chroot_dir=/var/run/vsftpd/empty</p>
<p>Aşağıdaki satırda bulunan vsftp ismini PAM service kullanabilir.<br />
pam_service_name=vsftpd</p>
<p>Şifreleme bağlantıları için RSA sertifikası kullanım yeri belirtilir.<br />
rsa_cert_file=/etc/ssl/private/vsftpd.pem</p>
<p>Gelelim ftp server&#8217;ımıza bağlanmak için kullanıcı açmaya.<br />
useradd -d /home/ftpdebian ftpdebian</p>
<p>Açmış olduğumuz ftpdebian kullanıcısına şifremizi atayalım.<br />
passwd ftpdebian</p>
<p>Bağlantı yaptığımızda kullanacağımız klasörümüzü açalım.<br />
mkdir /home/ftpdebian</p>
<p>Ve açmıl olduğumuz klasöre yazma hakkını verelim.<br />
chmod -c 0755 /home/ftpdebian</p>
<p>Vsftpd çalıştımak,durdurmak veya tekrar başlatmak için ;<br />
/etc/init.d/vsftpd start<br />
/etc/init.d/vsftpd restart<br />
/etc/init.d/vsftpd stop</p>
<p>satırlarını kullanabilirsiniz.</p>
<p>Ftp server&#8217;a ulaşılmak istendiğinde yasaklı kullanıcı olup olmadığını kontrol etmek için aşağıda bulunan iki dosya kontrol edilmektedir.<br />
/etc/vsftpd.ftpusers<br />
Yönetici gibi kullanıcılar için.</p>
<p>/etc/vsftpd.user_list<br />
Sıradan kullanıcılar</p>
</div>
<p>&nbsp;</p>
<div class="damn-sexy-bookmarks"><ul class="socials"><li class="damn-sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html&amp;amp;t=Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@burhan_07:++Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?+-+http://&#x27A1;.ws/д넎" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.htmltitle=Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&url=http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html&title=Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?&summary=Ubuntu+command+shell+den+a%C5%9Fa%C4%9F%C4%B1daki+komutlar%C4%B1+s%C4%B1ra+ile+%C3%A7al%C4%B1%C5%9Ft%C4%B1rman%C4%B1z+yeterli+olacak.%0D%0AUbuntuya+Apache+apache+2+ve+Php+servis+kurlumu+nas%C4%B1l+yap%C4%B1l%C4%B1r+%3F%0D%0A%0D%0A&source=Burhan KARADERE Kişisel Blog Sayfası" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html&amp;amp;t=Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-yahoomyweb"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?&amp;u=http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-delicious"><a href="http://del.icio.us/post?url=http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html&amp;title=Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-mail"><a href="mailto:?&subject=Ubuntu apache 2, php, mysql, phpmyadmin kurulumu ? How...&body=Ubuntu command shell den aşağıdaki komutları sıra ile çalıştırmanız yeterli olacak.
Ubuntuya Apache apache 2 ve Php servis kurlumu nasıl yapılır ?

sudo apt-get install apache[..] - http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html" target="_blank" rel="nofollow" title="Array">Array</a></li><li class="damn-sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html&amp;title=Ubuntu+apache+2%2C+php%2C+mysql%2C+phpmyadmin+kurulumu+?+How+to+install+on+apache+2%2C+php%2C++mysql++and+phpmyadmin+?" target="_blank" rel="nofollow" title="Array">Array</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.karadere.com/blog/ubuntu-apache-ve-php-kurulumu-how-to-install-on-apache-and-php-and-mysql.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

