
Search In
Joomla works on positions. Position works as a placeholder in Joomla Template where we place a module. According to those positions Joomla application able to place the module to a particular portion of a page. For example, the module position left m
In php foreach loops are used to access all the elements of the array. The syntax is as
foreach ($array as $key =>$value)
{
}
In above syntax , the no. of times loop get executed is equal to the no of elements in the array.
the same above s
What is the use of list() function?
The list() function is used to assign values to a list of variables in one operation. list() function basically works on numerical arrays.
Syntax of list() function:-
list(variable1,variable2,variable3.....)
&l
Sometime we need to perform some operations in variables values in jquery or javascript.
We generally uses:
a = jQuery('input#marks').val();
It will be working fine in all the browsers except ie8.
This type of assignment doesn't works in ie8.
You
Unit testing is done by the developers team before the aplication is verified/tested by testing team i.e, execution of the test cases. Unit testing is performed by developer on the specific unit of source code assigned.The test data used by the devel
To use soap api to add a products of categories into root category , first we need to create a magento user with the permission to access the api.
Following code will be use to set products to root category
$soap = new SoapClient('http://magentose
By using this function, when we will click the marker, a popup will be shown on map. Here we have a function , first we will assign the content to a string name, then we will pass that value to the function .
Watch below:-
function initialize() {
Programming languages can be categorized into two parts based on data type
1) Strongly Type
2) Weakly Type
Strongly Type:-
A strongly-typed programming language is one in which there are different dataty
Welcome to Findnerd.
There are two new functions named random_int and random_bytes which are introduced in PHP7. You can generate the cryptographically secure integers and strings
with these functions. random_int takes two parameters, one is min va
input : Reads a number from user input.You can assign (store) the result of input into a variable.
Example:
age = input("How old are you? ")
print type(age)
print "Your age is", age
print "You have", 65 - age, "years until retirement
