
Search In
As we see in many website some text get rotated and other text come in its place this is known as text rotation. It is a very basic thought where we can display more than one word without taking much space by simply rotating an individual word
The evolution of touch screen devices has been very rapid along the recent years. One of them is the gesture recognition. The gesture recognition technology is able to recognize many type of gestures made by a single finger or even a multi-finger ge
In Joomla, for creating SEF URLs in joomla component you need to make your router file which has very important role in each and every component to allow SEF URLs.
Let's assume that your component url is like this:-
http://www.mysite.com/index.php?o
While performing joins you need specific columns of the joined tables so for doing that you need to mention the name of the column with their table name.
This task gets tedious because you have to write your table name with every column you
While writing the stored procedure you always pass the parameters as the input type and the output type according to your need.
So while using these parameters you may notice that if you miss any parameter value during the stored pro
In writing the stored procedure we always need to work with the default value for the proper execution of the programs and the stored procedure we have made for the application.
So for doing it sometimes we have scenarios when we don
To copy structure in MySQL with data you need to execute the following MySQL statements:
use dbname;
create table new_table_name
select * from existing_table_name;
If you require the copy of structure without data then you need to execute the foll
The below mentioned code uses CIImage library's CICrop filter to crop the desired area from UIImage. The follwing code deoesn't deals with snapshot as CGContextRef rather crops the original image along with maintaining its quality and aspect ratio.
First of all load the component in the controller lets say UsersController using the below code
$this->uses=array(‘Auth’);
login.view:
<?php
echo $this->Form->create('User', array('id'=>'signUpForm','name'=>'userSignupForm', 'a
Hello geeks, today i am going to explain about how to get lat & long of a given address using Google geocode api.
To convert an address into “latitude and longitude” is known as geocoding
Here you go:
// set geocoding url
$geocoding_url = 'htt
