Archive for February, 2010

Creating Organising chart using google api

Google Code is Google’s site for developer tools, APIs and technical resources. The site contains documentation on using Google developer tools and APIs – including discussion groups and blogs for developers using Google’s developer products. Google Web Toolkit allows developers to create Ajax applications in the Java programming language. I am going to create a [...]

XAMPP – open source cross-platform web server

XAMPP is an open source cross-platform web server which  includes the Apache HTTPD, MySQL, PHP, Perl, FileZilla FTP Server, phpMyAdmin, OpenSSL, Freetype, Webalizer, mod_perl, eAccelerator, mcrypt, SQLite, Mercury Mail Transport System, fake sendmail for windows, FPDF Class It support Linux, Solaris, Windows and Mac OS X. XAMPP can download from : http://sourceforge.net/projects/xampp/ that link , [...]

Basic Stature of CakePHP and rules

Now lets discuss about some rules and mvc framework stature of cakePHP, for create a database application we need to follow bellow things 1) define data model 2) controller file : here we are writing database queries 3) and query results Table & field name convention 1)create your database 2) table name : lower case, [...]

Creating Static Pages and Linking in CakePHP

Now i am going to create sub page( statics) and linking each other for that i created about_us.ctp file under “pages” folder and going to give link from home – to about_us and from about_us to home. and on about_us.ctp use bellow php code <?php $this->pageTitle = ‘About us page’; ?> It use to select [...]

Cook a Custom CakePHP Template

You have seen bellow messages in the welcome screen has changed after each of your action. Editing this Page To change the content of this page, create: APP/views/pages/home.ctp. To change its layout, create: APP/views/layouts/default.ctp. You can also add some CSS styles for your pages at: APP/webroot/css. Creating a default home page To create a default [...]