
Search In
In the below example I have created a animation ImageView. When user click the image , then image will appear on full screen, after this when user tab again on image it will be Zoomout like a facebook image tab.
Here In activity_main.xml layou
Transform means to change the complete appearance of an element, mainly to improve it's visual.
CSS3 came up with the new properties to change shape, size and position of an element. These all new changes are made possible by single transform pr
Transform are used for storing and manipulating objects Position , Rotation and Scale or Size .
In this blog we will use transform to move an object.Moving an object by changing its transform does not require a Rigidbody, that way its hard to get c
add() Method
The add() method is used to add an option in a drop-down list.
This simplifies the work of user whenever it is required to add element or option.
below is the example of add() method which is used in dropdown menu and gives the idea how
You can create your QR Code using the PHP QR Code library. Download the QR Code library and include in your script file.
Example:-
<?php
include "phpqrcode/qrlib.php";
// create your QR Code with new text and display it
QRcode::png("Test QR Co
What is QR Code?
A QR code (Quick Response Code) is a type of barcode that is readable by dedicated QR readers, iPhone, Android and smartphones. The barcode using encoded information like numbers, letters, and Kanji characters. QR Code is an 2D Code
array_add :
array_add function is used to add a key/value pair to the array.It will add only when there is no such key available in the existing array
Example:
$array = array('foo' => 'bar');
$array = array_add($array, 'key', 'value');
arra
Namespaces plays an important feature of php. Namespaces are used to solve 2 major issues.
1) Authors of libraries
2) Applications encounter
Laravel 4.x also provide namespace to solve those issues.
The files are app/controllers/FilesControlle
Form Model Binding is one the important feature in Laravel 4.x. I am reading about this feature from the below link.
http://laravel.com/docs/html#form-model-binding
I have a situation where " The model (User) I want to bind in my form has a separate
As we all know joins play an important role in any project . So Laravel 4.x also provide Eloquent Query Builder in which we are able to use Complicated joins with variable.This can be easily explain by using example
Example:
I managed to fix this m
