
Search In
Following is the XML which we want to create:
SELECT magazineId
, magazineName
, coverPage
, publishDate
, expiryDate
, isActive
,(
SELECT (
SELECT (
SELEC
Every XML has two elements i.e.
1) Attributes and
2) Value
SELECT magazineId AS '@id'
, magazineName AS '@name'
, CoverPage AS '@coverPage'
, isActive AS '@status'
, publishDate AS '@publishDate'
, expiryDate AS '@expiryDate'
Unity UI Issues with respect to Platforms
Unity works on the GUI, GUI-Textures for the buttons and labels. Which causes many issues when we shift from one
screen size to another. Either you need to write your code according to percentage or redo yo
CALCULATION OF HRA
HRA is a part of salary package , in accordance with the term & condition of employment. Employee generally received HRA from his Employer. HRA is given to meet the cost of a rented house taken by the employee. HRA is an allow
With the help of Core Graphics Framework and touch methods of UIResponder we can easily draw on iphone screen.
There are two ways to do this : Either create a UIView subclass and draw directly on it, or use imageview from the View controller.
In o
$('#demo ul li[rel="'+id2+'"]').remove();
<div is="demo ">
<ul>
<li rel="id1">This is just a demo. </li>
<li rel="id2">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </li>
<li rel="id
One way to add undo functionality to a paint app is by storing state of the view and taking the view back to previous state on undoing. We can store state in arrays. And the state here will be all the lines being drawn and properties of the lines lik
Texture Packer is a wonderful program to create Sprite Sheet with in seconds for different data format like, cocos2d & Unity3D.
Its not a free program but Texture packer's demo version works pretty well too.If you are a 2d animator & creating
To find the version information of MYSQL server from command line log into MYSQL server using command
mysql -h hostname -uusername -p
You would be prompted for the password for the user on the server type the same and press Enter key.
You would b
Sending email using function drupal_mail(). All you need to do is install and configure SMTP module and then add the given code in your custom module.
function sendemail(){
$to = ' xyz@gmail.com ';
$from = ' abc@gmail.com ';
