Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Convert a string to array in php

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

Convert array to string in php

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';

Tomcat Address already in use: JVM_Bind

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

ORDER BY keyword in SQL

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

How to refresh all modules and database at a time in OpenERP (Odoo)?

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

How to Set the Multi Companies and Technical Features in OpenERP (Odoo)?

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

Steps to create module in DNN 7

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

How to inherit the modules in OpenERP (Odoo) ?

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 and combinators selectors

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

Explain Manifest file?

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

1 246 949
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: