
Search In
Hello friends,
Today we learn how to get the properties of a class in PHP. In PHP, get_class_vars() function is used to get all the default properties of a particular class. It will return the result in the form of associated array. The properties t
Hello Readers,
In this blog, I am going to tell a small difference between Explode & Split function in PHP. Both the function do the same thing i.e split a string into array.
But there is a minor difference that explode takes delimiter
The Initializer Block in Java
The initializer block in Java contains code which is executed whenever an instance of class is created therefore this block contains common part for various constructor of a class. The order in which constructor and ini
(Image Link: https://unsplash.com/photos/l5if0iQfV4c)
Search engine optimization or SEO is an efficient way to attract more visitors to your online platform. If you use it properly, that is. Nevertheless, we are at a point where ignoring i
Expressions in AngularJS is represented using double curly braces-{{ }}. Expressions are used to bind the data to the HTML in the same way as the ng-bind directive of angular.
Expressions using-
1.numbers:-
syntax- <p>Price of movie t
There are following types of operators in JavaScript.
1- Arithmetic Operators ( +,-,*,/,%,++,-- )
<script>
var a= 1;
var b = 2;
var c = a + b;
document.getElementById("demo").innerHTML = c;
</script>
2- Comparison (Relational) Operato
Arithmetic operators perform arithmetic on numbers or literals or variables.
1) + addition
2) - subtraction
3) * multiplication
4) / division
5) % modulus
6) ++ increment
7) -- decrement
<
If you want to demonstration module in OpenERP(Odoo) follow the below mentioned step:
for creation of any module in Odoo you have to make five files,given below-
1-__init__.py // its indicate the import instructions for various Python files
Dynamic Planning
Planning has been recognized as an essential preparation for orderly conduct of social and economic activities since early days of human existence. We have planned holidays, social and political events, and, most importantly, busine
From my previous blog,we all know that what prefabs are. Now,I want to explain how we instantiate prefabs and what are its advantages.
public class preafabDemo : MonoBehaviour
{
var ball:GameObject;
// Use this for initializati
