<?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>LAMP for WEB &#187; php</title>
	<atom:link href="http://www.lampforweb.com/index.php/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lampforweb.com</link>
	<description>Linux Apache Mysql Php - Örnek uygulama, ipuçları, döküman, duyuru v.s</description>
	<lastBuildDate>Fri, 07 Jan 2011 14:54:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Js ve css dosyalarının browser tarafından cache&#8217;lenmesini engelleme</title>
		<link>http://www.lampforweb.com/index.php/php/javascript-ve-css-browser-cache-sorunu/</link>
		<comments>http://www.lampforweb.com/index.php/php/javascript-ve-css-browser-cache-sorunu/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 10:42:24 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML/DOM]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=184</guid>
		<description><![CDATA[Browser&#8217;lar varsayılan olarak javascript, css ve resimler gibi harici dosyaları önbelleğe (cache) alırlar. Genellikle bunu sayfa yeniden açıldığında daha hızlı yükleyebilmek amacıyla yaparlar. Bazen css veya javascript dosyalarımızın browser tarafından ön belleğe alınmasını istemeyiz. Bu sorunu aşağıdaki gibi kolayca halledebilirsiniz.

&#60;link href=&#34;/stylesheet.css?&#60;?php echo time&#40;&#41;; ?&#62;&#34; rel=&#34;stylesheet&#34; type=&#34;text/css&#34; /&#62;

Aşağıdaki gibi bir sonuç alırsınız. time() fonksiyonu sonucunda elde [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/javascript-ve-css-browser-cache-sorunu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP ile css dosyalarının daha hızlı yüklenmesi</title>
		<link>http://www.lampforweb.com/index.php/php/php-ile-css-dosyalarinin-daha-hizli-yuklenmesi/</link>
		<comments>http://www.lampforweb.com/index.php/php/php-ile-css-dosyalarinin-daha-hizli-yuklenmesi/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 10:38:43 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[php örnek]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=185</guid>
		<description><![CDATA[Web sitenizde birden fazla css dosyası kullanıyorsanız sayfanızın yüklenmesi uzun sürebilir. Aşağıdaki php örneğini kullanarak css dosyalarınızı sıkıştırıp tek bir dosyada birleştirebilirsiniz. Hem tek dosya olması hem de gereksiz boşlukların ve yorumların temizlenmesi css dosyalarınızın daha çabuk yüklenmesini sağlayacaktır.

&#60;?php
header&#40;'Content-type: text/css'&#41;;
ob_start&#40;&#34;compress&#34;&#41;;
function compress&#40;$buffer&#41; 
&#123;
	/* yorumlar temizleniyor */
	$buffer = preg_replace&#40;'!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer&#41;;
&#160;
	/* tablar, boşluklar, satırlar temizleniyor */
	$buffer = [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/php-ile-css-dosyalarinin-daha-hizli-yuklenmesi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metin içerisinde kelime vurgulama/renklendirme</title>
		<link>http://www.lampforweb.com/index.php/php/php-kelime-renklendirme/</link>
		<comments>http://www.lampforweb.com/index.php/php/php-kelime-renklendirme/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 00:17:54 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[php örnek]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=180</guid>
		<description><![CDATA[Arama sonuçlarında aranan kelimeleri renklendirerek veya farklı bir biçimde göstererek vurgulamak isterseniz aşağıdaki fonksiyonu kullanabilirsiniz. Fonksiyon metin içerisindeki kelimeleri regular expression ile bulup değiştiriyor.

&#60;?php
&#160;
function vurgula&#40;$metin, $kelimeler&#41;
&#123;
    if &#40;!is_array &#40;$kelimeler&#41; &#124;&#124; empty &#40;$kelimeler&#41; &#124;&#124; !is_string &#40;$metin&#41;&#41;
    &#123;
        return false;
    &#125;
&#160;
 [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/php-kelime-renklendirme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php Url Kısaltma</title>
		<link>http://www.lampforweb.com/index.php/php/php-url-kisaltma/</link>
		<comments>http://www.lampforweb.com/index.php/php/php-url-kisaltma/#comments</comments>
		<pubDate>Sat, 27 Nov 2010 10:02:34 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[php araçları]]></category>
		<category><![CDATA[php örnek]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=178</guid>
		<description><![CDATA[Siz de bir twitter kullanıcısı iseniz bilirsiniz, yazacağınız mesajlar 140 karakterle sınırlıdır. Bu sebepten mesajlarınıza bir link eklemek istediğinizde sıkıntı yaşayabilirsiniz. Bu durumu aşmak için internette çeşitli url kısaltma servisleri mevcut. Bunlardan bazılarını api&#8217;leri yardımı ile php uygulamalarımızda kullanabiliriz. 
İlk olarak üyelik gerektirmeyen Tinyurl.com ile başlayalım :

function getTinyUrl&#40;$url&#41;
&#123;
	return file_get_contents&#40;&#34;http://tinyurl.com/api-create.php?url=&#34;.$url&#41;;
&#125;
&#160;
$turl = getTinyUrl&#40;'http://www.lampforweb.com/index.php/diger/php-url-kisaltma/'&#41;;
echo $turl;
&#160;
//http://tinyurl.com/337y28b

Tinyurl.com servisinin kullanımı kolay [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/php-url-kisaltma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php&#8217;de hızlı ve kolay SQL sorguları için ezSQL</title>
		<link>http://www.lampforweb.com/index.php/mysql/phpde-hizli-ve-kolay-sql-sorgulari-icin-ezsql/</link>
		<comments>http://www.lampforweb.com/index.php/mysql/phpde-hizli-ve-kolay-sql-sorgulari-icin-ezsql/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 15:56:26 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=173</guid>
		<description><![CDATA[Php ile proje geliştiren herkesin mutlaka veritabanıyla az veya çok mutlaka işi oluyordur. En ufak veritabanı işlemi için bile bir kaç satır kod yazmak gerekir.

$sorgu = &#34;SELECT * FROM projeler WHERE aktif='E' &#34;;
$sonuc = mysql_query&#40;$sorgu&#41;;
if &#40;mysql_num_rows&#40;$sonuc&#41; &#62; 0&#41;
&#123;
  $veri = mysql_fetch_object&#40;$sonuc&#41;;
&#125;

Bir şekilde bu kodları uğraşıp yazmış olsak bile ileride projemiz için kullandığımız veritabanı uygulamasını [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/mysql/phpde-hizli-ve-kolay-sql-sorgulari-icin-ezsql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Netbeans 6.8 Html Error</title>
		<link>http://www.lampforweb.com/index.php/php/netbeans-6-8-html-error/</link>
		<comments>http://www.lampforweb.com/index.php/php/netbeans-6-8-html-error/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 07:41:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[open source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[html error]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[netbeans 6.8]]></category>
		<category><![CDATA[php editor]]></category>
		<category><![CDATA[unknown tag error]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=156</guid>
		<description><![CDATA[Netbeans editör kullananlar netbeans&#8217;ın 6.5.1 versiyonundan sonra html kodlarında &#8220;unknown html tag&#8221; gibi bir hata alabilirler. Bu hatadan kurtulmak için netbeans 6.8&#8242;i kurduktan sonra kurulum dizinindeki &#8220;/home/netbeans-6.8/etc/netbeans.conf&#8221; dosyasını açıp &#8220;netbeans_default_options=&#8221; ile başlayan satırın sonuna &#8220;&#8211;locale en:US&#8221; seçeneğini ekleyin. 
netbeans_default_options="-J-client -J-Xverify:none -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Dapple.laf.useScreenMenuBar=true -J-Dsun.java2d.noddraw=true --locale en:US"
]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/netbeans-6-8-html-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Son Derece Kullanışlı 50 Adet PHP Aracı</title>
		<link>http://www.lampforweb.com/index.php/php/son-derece-kullanisli-50-adet-php-araci/</link>
		<comments>http://www.lampforweb.com/index.php/php/son-derece-kullanisli-50-adet-php-araci/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 09:51:29 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[php araçları]]></category>
		<category><![CDATA[php kaynak]]></category>
		<category><![CDATA[php tools]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=144</guid>
		<description><![CDATA[Samashing Magazine sitesi Php uygulama geliştiricilerin kesinlikle işine yarayacak 50 adet kullanışlı bir araç listesi oluşturmuş. Liste kategorilendirilmiş. Aradığınız veya ihtiyacını olan bir çok şeyi bu listede bulabilirsiniz.
Hata Ayıklama Araçları
Test ve Optimizasyon Araçları
Dökümantasyon Araçları
Güvenlik Araçları
Resim ve Grafik Oluşturma Araçları
Php Kod Düzenleyiciler
Versiyon Kontrol Sistemleri
Kullanışlı Eklenti, Uygulama ve Kütüphaneler
Online Php Araçları ve Kaynakları
Php Frameworkler
Php Editörleri ve IDE&#8217;ler
]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/son-derece-kullanisli-50-adet-php-araci/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Php&#8217;de serialize ve base64_encode ile sayfalar arasında dizi veya nesneleri taşımak</title>
		<link>http://www.lampforweb.com/index.php/php/php-serialize-ve-base64_encode-ile-dizi-veya-nesne-degerlerini-tasima/</link>
		<comments>http://www.lampforweb.com/index.php/php/php-serialize-ve-base64_encode-ile-dizi-veya-nesne-degerlerini-tasima/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 16:22:59 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[dizi]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[php örnek]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=100</guid>
		<description><![CDATA[Php sayfaları arasında POST veya GET metoduyla gelen değerleri veya sayfa içindeki dizi veya nesnelerin alt elemanlarıyla beraber değerlerini taşımak için aşağıdaki yöntemi kullanabilirsiniz.
form.html // Form verilerinin POST metodu ile gönderileceği form sayfası.

&#60;html&#62;
&#60;head&#62;
	&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;
	&#60;title&#62;Form&#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
	&#60;form action=&#34;islem1.php&#34; method=&#34;POST&#34;&#62;
		Adı : &#60;input type=&#34;text&#34; name=&#34;adi&#34; size=&#34;30&#34;&#62;&#60;br&#62;
		Soyadı : &#60;input type=&#34;text&#34; name=&#34;soyadi&#34; size=&#34;30&#34;&#62;&#60;br&#62;
		Email : &#60;input type=&#34;text&#34; name=&#34;email&#34; size=&#34;50&#34;&#62;&#60;br&#62;
		Telefon : [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/php-serialize-ve-base64_encode-ile-dizi-veya-nesne-degerlerini-tasima/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>XML &#8211; Dizi Dönüştürmesi Yapmak İçin Php Sınıfı (XMLArray)</title>
		<link>http://www.lampforweb.com/index.php/php/php-ile-xml-array-donusturme/</link>
		<comments>http://www.lampforweb.com/index.php/php/php-ile-xml-array-donusturme/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 13:56:44 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=93</guid>
		<description><![CDATA[Aşağıdaki assoc_array2xml php sınıfı ile dizileri xml&#8217;e, xml verilerini de php dizilerine dönüştürebilirsiniz. Daha çok php4 kullananlar bu sınıfa ihtiyaç duyacaktır. Php5 kullananlar SimpleXML sınıfı ile aynı işlemleri ve daha fazlasını yapabilirler. SimpleXML ile ilgili örnekleri ve bilgileri yakında yayınlarız.

&#60;?php
class assoc_array2xml
&#123;
	var $text;
	var $arrays, $keys, $node_flag, $depth, $xml_parser;
&#160;
	function array2xml&#40;$array&#41;
	&#123;
		$this-&#62;text=&#34;&#60;array&#62;&#34;;
		$this-&#62;text.= $this-&#62;array_transform&#40;$array&#41;;
		$this-&#62;text .=&#34;&#60;/array&#62;&#34;;
		return $this-&#62;text;
	&#125;
&#160;
	function array_transform&#40;$array&#41;
	&#123;
		foreach&#40;$array as $key =&#62; [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/php/php-ile-xml-array-donusturme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zeev Suraski ve Derick Rethans Türkiye&#8217;de!</title>
		<link>http://www.lampforweb.com/index.php/diger/php-kurucusu-zeev-suraski-derick-rethans-turkiyede/</link>
		<comments>http://www.lampforweb.com/index.php/diger/php-kurucusu-zeev-suraski-derick-rethans-turkiyede/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 08:04:25 +0000</pubDate>
		<dc:creator>longvehicle</dc:creator>
				<category><![CDATA[Diğer]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[açık kaynak]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.lampforweb.com/?p=73</guid>
		<description><![CDATA[PHP&#8217;nin yaratıcısı ve geliştiricisi Zeev Suraski ile PHP dilinin aktif geliştiricilerinden biri olan Derick Rethans, 24 Ocak 2009&#8216;da Taksim Nippon Otelde düzenlenen web programcıları platformu etkinliği için Türkiye&#8217;ye geliyorlar.
Golden Horn Ventures&#8217;un liderliğinde gerçekleştirilen etkinlik hakkında bilgi almak ve diğer katılımcıları görmek için www.webprogramcilariplatformu.org adresini ziyaret edebilirsiniz. Etkinlik programı için buraya, kayıt yaptırmak için buraya.
Web programcılarının [...]]]></description>
		<wfw:commentRss>http://www.lampforweb.com/index.php/diger/php-kurucusu-zeev-suraski-derick-rethans-turkiyede/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

