I’m proud to announce that after sooo time we finally launched iGOA’s website (http://www.igoa.in). It really means a lot to me, so i just wanted to share the link with you. (You may see my naked picture if you navigate enough around the site).

Jai iGOA!
Posted: September 7th, 2011
Categories:
Development,
Personal
Tags:
Comments:
No Comments.

Çıkar kadını, koy yerine beni. Gözünde canlanıyor mu? Süper!
Php’ye gönül verenler olarak takvimlerin gene konferans zamanını gösterdiği aylara girmiş bulunuyoruz
Zend Php konferansı 2011 bu sene 17-20 ekim tarihleri arasında, Santa Clara, California’ da gerçekleşecek.
Bu sene özellikle Adobe ile ortak olarak geliştirilen Adobe Flash Builder for PHP ile beraber tablet ve mobil cihazlarda flex ile uygulama geliştirmenin kolaylıkları ve php programcıları için avantajları özellikle ilgimi çeken konulardan. (Konuyla ilgili tam oturum listesi ve tarihlerine: http://zendcon.com/sessions/?tid=213 adresinden erişebilirsiniz).
Bunun yanı sıra artık php geliştiriciler için vazgeçilmezlerden birisi olan sektörün en önde gelen frameworklerinden Zend Framework’ün de hem konferans içeriği hem de düzenleyicileri düşünülecek olursa oldukça fazla tutorial ve oturumlar olacak. Bu sayede artık tam bir standarta oturmamış ve herkesin kendi kafasından kurulumunu yaparak özelleştirdiği Zend Framework’ün resmi olarak nasıl kullanılması gerektiğini, ilk ağızlardan dinlemek oldukça hoş bir tecrübe olacak benim için.
Dünyanın bir çok yerinden, ileri düzey php kullanıcılarının katılacağı bu konferansın ortamını daha ucuza solumak isteyenler için, eylül ayının 10′una kadar Early Bird biletleri satışa sunuldu. Fazladan bir kaç gün de kendinize ayırarak San Jose’nin güzel plajlarını ziyaret edip, konferansta öğrendiklerinizle bütün bir sene boyunca kendinizi meşgul edebilecek bilgilere sahip olabilmek için konferans ve tutoriallara katılmak bulunmaz bir fırsat olabilir.
Konferans hakkında daha detaylı bilgi için: http://www.zendcon.com adresini ziyaret edebilirsiniz.
Posted: August 16th, 2011
Categories:
Development,
Technology
Tags:
php,
zend,
zend conference 2011
Comments:
No Comments.
This is simple but usefull snippet… This method will return the related table’s field names as array:
Let’s assume that you have a table called Forms. And you have a model class in models folder called Forms. To retrieve the field names in that table code will be:
$mForm = new Forms();
$colNames = $mForm->info(Zend_Db_Table_Abstract::COLS);
That’s it, $colNames will be your field names…
Posted: May 13th, 2011
Categories:
Development
Tags:
Development,
zend
Comments:
No Comments.
Nette bir çok çözümler üretilmiş fakat hiç birisi tam anlamıyla çalışmıyordu, ta ki kutsal kitabımız olan Php Manual’ ın TR versiyonuna bakana kadar.
UTF-8 ile strtoupper / lower / ucfirst fonksiyonları Türkçe karakterlerde sıçıyordu. Bunun çözümü:
function strtouppertr($str){
return mb_convert_case(str_replace(‘i’,'İ’,$str), MB_CASE_UPPER, “UTF-8″);
}
MB_CASE_LOWER be MB_CASE_TITLE ile hepsi küçük, ilk harfi büyük olayını da yapabilirsiniz.
Faydalı olsun.
Posted: November 30th, 2010
Categories:
Development
Tags:
Development,
php
Comments:
4 Comments.
2 days ago Jquery 1.4.3 is announced. You can check the release notes here.
Also i was using an older version of chm manual for Jquery, finally i found a newer one (i wasn’t searching for it, i was too lazy to search for a long time for manuals). Here you can find the latest Jquery Api CHM Manual.
When you are using Jquery ajax requests with Zend Framework, you can check the request object and act different if it’s an ajax request or not. What i need is, if the request is not an XmlHttpRequest i should forward client to main page.
Here is the snippet that you can use in your controller:
[code]
public function popupAction(){
if($this->_request->isXmlHttpRequest()): //is Ajax Request?
//Do the rest, assign variables to view, do more controls etc.
else:
//Just forward users to main page.
$this->_forward('index','index');
endif;
}
[/code]
Posted: October 18th, 2010
Categories:
Development
Tags:
ajax,
Development,
jquery,
zend
Comments:
No Comments.
««