
Search In
Hello Reader's! if you have an given array on with you want to sort with any selected key index as show below:-
Array
(
[0] => Array
(
[configuration_id] => 10
[id] =&
Sometime in a table we need two or more column to uniquely identify each row . Composite key is the combination of two or more Primary key . Primary key or candidate key come from the composite key .
Syntax in SQL :
create table table_name col_name1
The Date.parse() method takes a date string, and returns the number of milliseconds since midnight of "November 1, 1997 10:15 AM". if the string is unrecognised or contains illegal date values (e.g. 2015-02-31)
Syntax
Date.parse(dateVal)
datestri
Hello everyone
Is there any automated way where I can export all the individual layers at once in a particular format?
I am using Photoshop CS5 and have 15 layers with transparency.
I have created an effect in photoshop using layer style and hue saturation. I have 15 PNG files. Is there any automated way in photoshop that in can apply this effect into all png files ?
Hello Reader's if you have the current date and you want to get some past dates or future dates then here you can see it. PHP offers you to use inbuilt function strtotime.
Lets see how you can adjust the dates with this.
Here you will get the next d
1> 'each' will loop through each element of the array and evaluate whatever is return inside the block, but it returns the original array without any change.
a = [5,10,15,20]
=> [5, 10, 15, 20]
a.each {|t| t+2}
=> [5, 10, 15, 20]
a.each
Difference between float,double and decimal in terms of exact calculation(Tested in mysql)
I was creating an application where I need exact values from mysql procedure so I have to find better data type which gives me exact value so I tested it firs
In mysql database i created "leave" table:
CREATE TABLE `leave` (
`ID_LEAVE` int(11) NOT NULL,
`ID_WORKER` int(11) NOT NULL,
`BEGIN_DATE` datetime DEFAULT NULL,
`END_DATE` datetime DEFAULT NULL
)
INSERT INTO `leave`
(`ID_LEAVE`
Hello Readers,
Today will discuss the possible way to make div height 100% according to screen size. Let's see about the first method -
So, below is the CSS code -
html, body{
height: 100%;
}
.box{
height: 100%;
background: green