Pages - পৃষ্ঠাসমূহ

create a styled float menu with css and jquery

Previous post show how to create floating content and fixed floating content using for bookmarking tool and feedback button. But this post show how to create a main menu fixed on top when the pages is scrolling. Simple jquery tricks do it easily. For this you need to learn clearly css,html and jquery. But not very hard to try.

Create multilevel horizontal menu with css

To decorate websites and navigate to one page another page every wesites need a menu. With css anybody can style with their own. To navigahe one page to another page and have a long menu we need multilevel menu. This post show how to create a multilevel menu using css.

create accordin style with jquery

Create accordin style with jquery is very easy task. This post show this how to create it. For this we need to learn simple jquery. Accordin style is used for huge content in a little space and navigate easily. It is now used more in news and information in the webside sidebar. Now lets start to create it.

PHP date tutorial with example

When need to show date in webpages, what we do?. How to do this? For this not go far. PHP has more functions to show date in php. This post show the details about date in php.For this we need to learn the syntax of PHP date symbols. This post provide the list of php date symbols.

zoom a image from image gallery like google

This post show how to zoom a image when hover a image. In google image search, when we hover an image this image will simply zoom. This is sometimes necessary for image gallery. This works done by html, css and some jquery lines. Now lets start the techniques to learn.

PHP Object Oriented Tutorial

Object-oriented programming is a style of coding where a large project can complete simple way with less coding. When a class is created under a project then it call again and again. This post show the tutorial of basic Object Oriented Php (OOP). After creating a class it can be called again and again and do less coding after creating a class. So OOP is most importatnt and useful. If you want to shitch from PHP to Objected Oriented PHP, let's start to learn.

Object oriented php tutorial - Constructor & Destructor

PHP 5 allows developers to declare constructor methods for classes. Classes which have a constructor method call this method on each newly-created object, so it is suitable for any initialization that the object may need before it is used.

Object Oriented Php Tutorial - some keywords

In object Oriented php we need to learn some basic keywords like static keyword, parent, final keyword , Scope Resolution Operator (::) and $this variable. This post clear about this keywords with some examlpes.

Object Oriented Php Tutorial - Inheritance

Inheritance is a well-established programming principle, and PHP makes use of this principle in its object model. This principle will affect the way many classes and objects relate to one another. For example, when you extend a class, the subclass inherits all of the public and protected methods from the parent class. Unless a class overrides those methods, they will retain their original functionality. This is useful for defining and abstracting functionality, and permits the implementation of additional functionality in similar objects without the need to reimplement all of the shared functionality.

Object oriented php tutorial - Interface & Abstract class

This post describe two different keyword uses in php. Abstract and Interface this two thing uses special purposes in php. Lets start learn this topic with some example. PHP 5 introduces this things.