
Search In
Hello readers
If you want to use Background Transition on your anchor tag, buttons, div, etc. then code below will be helpful for you.
According to the code the transition will occurs on hover or and will focus on when time is defined at spe
Hello readers , this is a small blog on creating animated buttons using css3. In my example, I have created four buttons using "<ul> <li>" of different color but of same size. These buttons have width and height 100%, bord
Hello!!!
Travelling Salesman Problem is for finding the shortest possible root that visit every node in the graph and return to the origin point. It is used to find the shortest path.
For example:-
In this graph, Their is many way to reach the sta
Hash:
Hashes are way of storing data in key-value pair format. Key can be any ruby object ( i.e. string, numbers ). Here we will see some of mostly used methods for hashes.
1) Creating/Initializing a hash:
Hash can be created in differen
Content writing is one of the most important activities a brand can adopt. It’s an effective way of creating conversations around your brand, connecting with your target audience and, best of all, content creators add value to your on
JavaScript Function
A function is a separate part of the program that performs a particular task. The code of the function can be reused by calling the same function wherever it is required to perform the same task.
A function syntax is as the ke
Hi readers !
In this blog we will see how we can clear all textboxes in a form using jQuery .
To clear a textbox with id 'txtBox1' in javascript we use below code :
document.getElementById('txtBox1').value = '';
We can use this code to clear s
In this tutorial I will describe that how you can search any value in multidimensional array in PHP.
I am taking an example to describe this. Like-
I want to fetch 'salary' with the name 'xyz' employee from an user array list.
$arr1=array(array('
In yii we can write our custom or row query for complex queries here is an example of custom query with multiple table joins
$data = Yii::app()->db->createCommand()
->select('column1.column2,column3.name')
->from('table')
->join('tab
On developing the customer user based web server, developer should choose all supported version of web browser and code according to web browser. If you are looking for detecting the version of all IE using PHP then the code below will help you perfe
