Learn PHP-18 : Logical Operators
Logical operators are used when we want to combine operations and expressions into a set of logical comparisons. They are usually used in conjuction with “if and “else” statements to lay out the...
View ArticleLearn PHP-19 : Concatenation Assignment Operators
The concatenation operator ( . ) returns the combined value of its right and left values. The variable’s data type has an affect on the output. Here are code examples using the concatenation operator (...
View ArticleLearn PHP-20 : The ?(ternary) Operator
There is an operator in PHP that is very similar in functionality to the if statement called the ternary (?) conditional operator. It evaluates to check if the first subexpression is true, if it is it...
View ArticlePHP Project-11 : To creata a simple guestbook by PHP
In this tutorial create 3 files 1. guestbook.php 2. addguestbook.php 3. viewguestbook.php Step 1. Create table name “guestbook” in database “test”. 2. Create file guestbook.php. 3. Create file...
View ArticleLearn PHP-21 : if… else… else if Statements
We use the if… else… else if statements to establish conditional logic and evaluate things when needed in our scripts. Sometimes you have to evaluate values to then give the user the correct output on...
View ArticleRefreshing DIV using jquery
There are very simple steps to achieve this: Step 1: Copy the following code and paste it in the head section of your webpage. <script src="http://ajax.googleapis.com/ajax/...
View ArticleDifferent Layout on Each Page in One WordPress Theme
WordPress can be configured to use different Page Templates for different Pages. There may be any number of reason why you need different page templates and once created you can add or remove items. It...
View ArticleWordPress Menu Tricks
In this post I’m going to show you how to take WordPress Menu Editing to the next level. You’re going to learn how to use Primary and Secondary menus in your WordPress theme; Add descriptive sub-title...
View ArticleAdding Class To The WordPress Page Menu
Problem: You need to add a class or id to the the unordered list in wp_page_menu. Maybe to implement some super-slick drop down page menus. But! That <ul> tag is trapped inside of wp_page_menu....
View Article28px top-spacing in html body problem of WordPress 3.1
Problem : Few month ago I fall a great problem of wodpress that 28px top-spacing in html body.I can not solved it by CSS and last I find a solve from WordPress forum,I hope it’s very important to know...
View Article