What is Object Oriented Programming
What is Object Oriented Programming Now a days most of the object oriented programming concepts are covered in college time. Mostly we remember these concepts to get higher grade or getting new job . So lets move to introduction to Object-Oriented Programming Using PHP. This page will describes the term “object-oriented programming”. Object-oriented programming is [...]
javascript basics for beginners
Hi This blog is all about javascript basics for beginners which one should know. Its very difficult to carry all the things which we read every day. This javascript basic blog is a knowledge backlog which i would love to share with every individual who’s new or want to refresh the memories for next milestone [...]
most common IE css problems
In this article I will try to explain the most common IE css problems. Which most of us have already come across. I just want to share this experience with the people who are not aware of how to resolve IE css problem. 1. Centering a Layout Lets say we have to arrange element in [...]
How to install subversion on ubuntu
Step 1: Subversion can be installed as follows: sudo apt-get install subversion Step 2: Now create directory that will hold our repository e.g. /var/lib/svn ,you can use change this directory, if you like. mkdir -p /var/lib/svn Step 3: Lets create a repository for project called TestProject inside the /var/lib/svn directory – this can be done [...]
Drupal 7 multilanguage site
drupal 7 multilanguage site is very easy job, One should know proper steps and set of modules required for this. Step 1. Enable core “Content translation” and “Locale” module – Install “Internationalization module” Now Go to the modules (admin/build/modules) and in Core – optional section enable – Locale modules & Content translation modules Step 2. [...]
how to assign different template for page wordpress
This blog will guide on how to assign different template for page wordpress or different template for each page in wordpress. Yes its possible and really simple way to do this. After reading this blog you will be surprised on it’s so easy. Quick and easy steps for creating custom template file for wordpress page. [...]
best wordperss tips and tricks
This blog is all about basics of wordpress i.e. best wordperss tips and tricks, In wordpress there are two different type of hooks 1) Action : These are to be called on certain event. 2) Filter : filters are mainly used while adding data into the database, pulling data from database and before showing them [...]
wordpress add custom css file
Being experience php developer there are several ways (I mean by hook or by crook ) we can do this, but from coding standard and best practise od wordpress add custom css file is as follows. Step 1: Create style.css file inside “phptechi” plug-in folder. Step 2: Now copy following code into plug-in file and [...]
How to create table in wordpress
This blog will guide you through on how to create table in wordpress dynamically. While writing this blog i am presuming that you know the basics of creating the plug-in. If you are not clear then you can refer the wordpress hello word plugin tutorial so that you can create the plug-in file inside plug-in [...]