
Search In
There are different methods to check two text strings are equal or not in PHP. This article defines the methods which can be used for comparing two text strings.
1. '==' : == operator is most commonly used operator for comparing two strings. If the
This article defines an array function of PHP, which is used to find the difference between two arrays. The details of function are given below :
array_diff() : array_diff() is used to compare two or more arrays to find the difference. The function
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
Hi I hava a problem in running my openbugs model my model is:
model
{
for(i in 1:N)
{
y[i] ~ dpois(mu[i])
log(mu[i]) <- alpha + beta1*x1[i] + beta2*x2[i] +beta3*x3[i] + u[i] + v[i]
u[i] ~ dnorm(0, precu)
}
v[1:N] ~ car.normal(adj[], weights[
In python dis module converts byte codes to a format and You can run the disassembler from the command line and It compiles the given script and prints the disassembled byte codes to the stdout . The dis function takes a class, method, function or co
How to resolve "If we click window application button more than ones at a time then it automatically click the same location button of next form"
Sometime we face an issue in window application that if two windows have same Start Position
We can split sublime editor into 2 or more screen in any one of the following 2 ways :-
I am going to tell you how to split it into 2 screens, using the similar way you can split in into more than 2 screens also or vice-versa.
1> From menu b
I am trying to list photo albums where each album contains individual photos. This is similar to categories where each category cotains posts.
I have two database tables, namely "albums" and "photos".
The albums table has co
If you want to implement a new thread using the threading module, you have to follow the following steps which is given below−
Step-1 Define a new subclass of the Thread class.
Step-2 Override the __init__(self [,args]) method to add additional argum
To restore database in PostgreSQL in ubuntu follow these step in terminal
1- sudo su - postgres
2- psql
3- psql -d abc1 < /home/sachin/pqr.sql
abc1 = is dbname from where I am restoring backup
pqr = backup file which will restore data
