
Search In
jQuery is a feature-rich JavaScript library. jQuery makes the things like animation,events handling, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
Here we are sharing some useful jQuery tricks that can be u
How to check an Ajax request:
I am writing this blog specially for beginners who are learning Cakephp. In order to check whether the request is through Ajax or not. This can be checked by enabling the RequestHandler component in AppController or ena
Cakephp 2.*: OR condition
I am writing this blog which will let you know how to set OR condition in Cakephp 2.*:
Write following lines of code to use OR condition:
'User' => array (
'conditions' => array (
'OR' => array(
In this blog we are displaying that how we can create a tab bar based application in iOS.
Step 1. Create a new project and select Tabbed Application Template instead of the Single View Based application and click next.
Step 2. Name that application
How to use where clause and inner joins?
This is the way to use where clause and inner joins in Cakephp 3
Use matching if its cakephp 3.0.x.
Use innerJoinWith() if its cakephp 3.1.x
For example:
return $this->Product->find()
-
I followed this tutorial on youtube: Unity3D. Top-down 8 directions movement - YouTube[^]. It took me a while but I've almost converted from movement by arrows to mouse touch . but now I have this problem, there's flickering that occurs
Urban Airship provides a number of REST API endpoints, collectively known as the Urban Airship API Version 3. It provide different different rest API such as Push,Send Push,Validate,Push Object etc.
Here below is the example of "Push"
In unity you can find gameobjects by their name or tag.
1. Find objects by Name:- You can easily find the gameobjects by their names.
Here is the simple code for this
Gameobject Abc;
void Start()
{
Abc = GameObject.Find("Square");
}
In above

MySQl IN operator facilitates us to match a column's value against multiple values in one go.
As most of us are aware that we use WHERE clause for giving any condition in SELECT, INSERT, UPDATE, DELETE statements, so whenever we have to


Hello friends, while importing excel file in MySQL using PHP I was getting following error:
iconv(): Detected an incomplete multibyte character in an input string
Before proceeding further to solve the error let's first understand what
