
Search In
A transaction is used to check whether all SQL statements get executed successfully or not. A Single transaction starts with a particular statement and ends after the completion of all the SQL statements executed successfully. If all SQL statements f
In SQL while storing or retrieving passwords we need to ensure that it should be in encrypted format.
So for doing that we first need to store it in encrypted form
CREATE PROC [dbo].[uspRegisterUser]
@FirstName VARCHAR(50),
@LastNam
Hi All,
It is quite easy to add a node programmatically in Drupal 7. But it gets little bit complex when we need to add an image to this node as well.
Use the following codebase to add an image to a node programmatically:
global $user_id;
$fil
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 ';
Frequency-shift keying (FSK) is a frequency the frequency is transmitted through the carrier signal. The this technology is used for the systems like caller ID and emergency broadcasts.
In FSK, we use frequency as a parameter to modulate the
These days android came up with new material design so lets get updated with one of the many features ie. Action Bar which is also special type of tool bar.
Before we start make sure you have these requirements fulfilled.
Android Studio.
Appcombat
Below document will assist you in creating Liferay Development environment on Windows 8 64 bit OS. Please be noted that you need at least 2 GB RAM for Liferay to work smoothly.
Install Chrome Browser
If you are already having good browser, you
Hello,
Most of the time we have a bit of confusion between the jQuery .bind(), .live(), .delegate(), and .on() methods and when they should be used. Here I am sharing some information regarding this:
bind() Method:
Syntax: .bind( eventType [, even
There are many important things that are associated with IT Security for the business. For the company to be on the important position on the matters of the finance, some of the matters that need to be run effectively are the one for the technology i
Hello readers, In this tutorial I will guide you to "How to add Custom Metabox in a particular page in Wordpress."
In WordPress, If you want to add or save some extra field in a post, custom post type or in the page. So basically w
