Archive for March, 2011

First of all, what is GPS? As all of you should know, it means Global Positioning System. “The Global Positioning System (GPS) is a space-based global navigation satellite system (GNSS) that provides reliable location and time information in all weather and at all times and anywhere on or near the Earth when and where there is an unobstructed line [...]

  • Share/Bookmark
Tags:

I have attended SEOmoz Analysis tutorial last Thursday, March 17, and learned some things on how to make the most of the new link analysis tool.
If you’ve been using Linkscape as one of your search engine optimization tools you’re probably pretty happy with the functionalities that the service brings. At first glance it might seem [...]

  • Share/Bookmark
Tags:

This PowerPoint presentation will give you a brief idea about Brand, its importance and how to create a Brand. To know more click on the link below and download the presentation.
http://blog.codez.in/post-files/Brand Building.ppt

  • Share/Bookmark
Tags:

This PowerPoint presentation gives a fair idea about Search Engine Optimization. To know more click on the link below and download the ppt.
http://blog.codez.in/post-files/seo.ppt

  • Share/Bookmark
Tags:

1) Open Flash File ( 2.0 Action Script ).
2) Chose any Water Fall Image .

3) In flash Create a Layer and Import Water Fall Image and Lock the Layer .
4) Create a new layer and name it Water Fall.
5) Create a Small Circle with Gradient Fill. Convert This to Graphics Object and name it drop.
6) Convert your “drop” graphic object [...]

  • Share/Bookmark
Tags:

Folder structure [From root]

Application
 

Controllers

This is the controller section of your site .
Controllers are nothing but a class file & within the class many action controller function/method are defined.

Controller function name is very case sensitive (camelCase) . [...]

  • Share/Bookmark
Tags:

Variable declaration / definition
To access a variable you have to declare it from your controller section & then you can use this variable in the view section.
Usage: Controller page
public function nameAction()
{
$request = $this->getRequest();
$this->view->assign(‘name’, ‘Sandipan Bhattacharjee’); // we assign a value to the name variable
[...]

  • Share/Bookmark
Tags:

Database Manipulation

Create a controller
Call / Create(Write) Database configuration setting
Request data object creation
Assign message (Success / Failure / Already exists)
Create a view page to see the message or to redirect to the previous page to fill it up again

Controller creation
public function processAction(){
}
Database configuration creation/call from registry
$registry = Zend_Registry::getInstance();
$DB = $registry['DB'];
Or
$params = array(‘host’=>’localhost’ , ‘username’ [...]

  • Share/Bookmark
Tags:

HTML5 has introduced several new inline elements in addition to the likes of span, strong, em, abbr, etc. Interestingly, they are not called “inline elements” anymore, but have been re-christened “text-level semantics”. Let’s take a detailed look at what they are and what they do.
mark: This element is meant to help in highlighting a [...]

  • Share/Bookmark
Tags:

This is  a PowerPoint presentation regarding a simple yet effective way to manage your projects. It discusses mainly about-

Back Up of the projects
How to maintain Day to day progress report of the project you/the team are working on

To download the PowerPoint presentation please click on the link below-
http://blog.codez.in/post-files/Organizing Your Project.pptx

  • Share/Bookmark
Tags: