
Search In
Android 5.1 Lollipop SDK
Hi Android Developer, Recently Google has release Android 5.1 lollipop with support for Multiple SIM. Make sure you take full advantage of this new feature in your app.
http://www.blogger.com/feeds/6755709643044947179/posts
If we have a function and we want to return multiple values from that function then we can easily return an array from function.Below is the example which returns a multiple array from function.
function myFunc( ) {
$myvar1 = 10;
$myvar2 = 20;
ret
Hello Reader's If you want to genrate password in PHP then you can use the code as below:-
you just have to try this, use strlen instead of count, because count on a string is always 1:-
function randomPassword() {
$alphabet = 'abcdefghijklmnop
To display all errors in php we need to add following lines of code in php file.
error_eporting(E_ALL);
ini_set('display_errors', 1);
We can Set display_errors = On in your php.ini file.
or we can try the following code in php file.
ini_set('d
Hello Friends,
I am getting the following error message when using customer payment in openerp-6.1 to validate the customer payment.
The error massage is shown below:
To reconcile the entries company should be the same for all entries in openerp-6.
To find the number of days until a particular date you need to write the following PHP script:
<?php
$date1="December 31,2015";
$date2=strtotime($date1);
$date3=ceil(($date2-time())/60/60/24);
echo "There are " . $date3 ." days until $date1.";
?&
There are different methods to check two text strings are equal or not in PHP. This article defines the methods which can be used for comparing two text strings.
1. '==' : == operator is most commonly used operator for comparing two strings. If the
In python dis module converts byte codes to a format and You can run the disassembler from the command line and It compiles the given script and prints the disassembled byte codes to the stdout . The dis function takes a class, method, function or co
A tuple is a sequence of immutable Python objects. Tuples are in form of sequences as same as lists. The main differences between tuples and lists is that tuples cannot be changed like lists, also tuples use parentheses whereas lists use square brack
Program to demonstrate two Linked Lists are Identical or not.
class LinkedList
{
Node head; // head of list
/* Linked list Node*/
class Node
{
int data;
Node next;
Node(int d) { data = d; next = null; }
}
/* Returns true if linke
