
Search In
We can convert string to array using php predefined function named as explode().
Syntax for explode is:
explode('separator',string);
Example -
$string = "This is a text";
$split_data = explode('',$string); // splitting by space as a separator
We can convert array to string using php predefined function named as implode().
Syntax for implode is:
implode('separator',array);
Example -
$split_data [0] = 'This';
$split_data [1] = 'is';
$split_data [2] = 'a';
$split_data [3] = 'text';
If you are facing following issue while starting tomcat:
SEVERE: StandardServer.await: create[localhost:8005]:
java.net.BindException: Address already in use: JVM_Bind
at java.net.TwoStacksPlainSocketImpl.socketBind(Native Method)
at java.n
We use ORDER BY to make our record list in a ordered manner in the sense of descending /ascending sort.
Syntax:-
SELECT column_name, column_name
FROM table_name
ORDER BY column_name ASC|DESC
Note:- User can ORDER BY more then one column in a s
Step-1 Go to terminal -> Start the OpenERP Server-> and enter the below commands
Step-2 ~/workspace/OE7_Test$ ./openerp-server
Step-3 ~/workspace/OE7_Test$ ./openerp-server – u all – Database name
So this will Refresh all the modules and
Step-1 Go to Settings menu
Step-2 Select submenu -> Users -> User
Step-3 Selcet Administrator -> Create
Step-4 Select Access Rights -> Technical Settings
Step-5 Select -> Multi Companies -> Technical Features
I. Installing the templates
1. First of all you have to download Aspose.DNN.Templates_VS2013 from the given link: https://asposednn.codeplex.com/releases
2. Now double click on the downloaded file to install the templates in visual studio.
II. Creat
First we have to look customized module, according to there requirement fields
class, model and then we have to decide to inherit existing module. As in below .py (Python file):-
class Demo(osv.osv):
_inherit='sale.order.line' // sale.order.l
CSS3 child selector :
CSS3 nth child selector, selects the child element of its parent.
The common syntax: :nth-child(n)
There are many other syntax related to nth-child. Few of them are:
1. :nth-child(odd)
For selecting the odd child element of its
Manifest file : - " Manifest is a simple text file that tells browser what to cache" and what not.
The browser only cache the Manifest file content and does not cache the rest.
Manifest file contains three sections :-
(1) CACHE MANIFEST – Th
