
Search In
Hello Reader's ,
Today in my blog i am going to Describe Data Type in PHP. Data Type is a very important part of any programming language. Let's start learning about Data Type
What is Data Type?
A data type identifies the chara
Hi Friends!
This time I am here with a very small article about sending WhatsApp Message from your .Net application. You need following things for that.
1-WART(WhatsApp Registration Tool)
This a tool with which you can get the password to be use
Step1: Adding MpAndroidChart android library into project
dependencies {
compile 'com.github.PhilJay:MPAndroidChart:v2.1.6'
}
repositories {
maven { url "https://jitpack.io" }
}
Step2: Pie Chart layout in your xml file
<co
Hello Readers
In php we count the number of elements of an array by two ways:
1. sizeof()
2. count()
sizeof()
sizeof() function is an alias of count() and it is used to count the elements of an array.
Syntax of the function sizeof():
sizeof(a
Hi All,
Here are some basic and required git commands for starting purpose:
1: Set your name:
git config --global user.name "Your name"
2: Set your emails:
git config --global user.email your_email
3: Clone repository:
git clone git_repository
Linkify is very helpful to create links from TextView or Spannable. Linkify get Regular expression and work on Text with Regular expression.
For example, you have a random text which includes web URLs also and you want to use web URL as click
For example Let’s create an alert box, so for this we define the base styles; some padding , a border and background.
To start with it, we have to set out the list of colors and name variations of the alert box. Then count the number of variations u
Unicorn is an HTTP server for Ruby. It is designed to be used in production environment unlike Webrick which is designed to be used at the time of development on local machine. Because it is very fast, efficient and offers lots of good features like
Hello all,
Here I am sharing some information about how to get multiple columns layout using css3.
By using css3 column-count property we can divide an element into number of columns.
Here is an example:
div {
-webkit-column-count: 4; /* Chrom
To collapse table header in swift ->
1. Make a property of NSMutableSet, name it "collapsedSections", this property will be use to check Collapsed section in the UItableViewCell.
var collapsedSections:NSMutableSet = []