
Search In
Hello Reader's!
If you are looking for code that make your plain MyStringPlainText urls and emails into anchor format then you can use the code function as below:-
<?
function SetTheAnchor($MyStringPlainText)
{
$MyStringPlainText = html_
REST (Representational State Transfer) is based on resources and actions. A resource can be an URL referencing a object or any entity on which we want to perform action for example: /listUser or /searchUser. Action can be one of the following:
 
There are different ways to compare two strings in PHP whether by using built-in functions like strcmp or strcasecmp of PHP or using equality operator(==). None of these methods return the number of matching characters in both the strings.
This arti
A regular instance method can be used by all the instances of that class and all of them will inherit their behavior from its class. But what if we want a particular instance to have a specific behavior that no other instance can have that is where s
In MVC while performing the interaction with the database we can use Language Integrated Query for easier manipulation of the data in the data source.
We can use it very easily by first creating the Data Context for
If you want to define Functional field in OpenERP use below code -
class Demo1 (osv.osv):
_name = ’Demo1’
_description = ’Contract’
_columns = {
’name’ : fields.char(’Contract Name’, size=30, required=True),
’employee_id’ : fields.many2one(’employee
defautl keyword is used in two situations
1)switch statement.
2)export statement.
1) example of switch statement
switch (expr) {
case "Oranges":
console.log("Oranges are my 1st choice.");
break;
case "Apples":
console.log("Apples ar
Hello Reader's you might have seen the coding standard with the common syntax | and || is used. These are the syntax used for checking the conditions and sub conditions. The first | is called as bit wise Operator. It is used to make the condition be
To install ejabberd with patch file(Serve cross domain policy file for Flash).
Install erlang on your system.
Download ejabberd
wget http://www.process-one.net/downloads/ejabberd/2.1.11/ejabberd-2.1.11.tgz
tar zxf ejabberd-2.1.11.tar.gz
4 cd ejab
Boundary Value Analyses & Equivalence partitioning are both test case design techniques in black box testing.
Equivalence partitioning: In this method, the input data is divided into different three classes.
This method is used to reduce the numb
