PHP Interview Questions and Answers for freshers and experienced



PHP interview questions and answers provided by PCDS is fully compiled and tested by R R Singh. He has 12 year experienced in PHP technology. He tested on all environment so these questions can be used by freshers and 1 to 10 years experienced candidate as well. It's cover latest, basic and advance PHP important questions with examples. It's very useful for easy jobs search in IT Company. As it's covered more than 2000 questions on file system, email, function, string, classes, array sorting, date format, Memcached PHP, frameworks, ci from php4, php5 php6 to php7 with pear etc all added in PDF and docs, PCDS members can e-books pdf Download related with PHP and User can search by search option and also a form is given at the end of this page for those users who want more Interview questions and answer on PHP just need to fill the form and send us..

Top Most question: What the new feature in PHP7 and when PHP7 will be release?

PHP 7 is Coming (Will be Release) on 12 nov 2015 with these update in php7
1. Zend Engine 3 performance improvements and 64-bit integer support on Windows
2. uniform variable syntax AST-based compilation process
3. added Closure::call()
4. bitwise shift consistency across platforms
5. (null coalesce) operator
6. Unicode codepoint escape syntax
7. return type declarations
8. and scalar type (integer, float, string and boolean) declarations.


Objective Questions for written Test
1. Which of the following functions allows you to store session data in a database?

A. session_start();

B. session_set_save_handler();

C. session_database_object();

D. You cannot store session data in a database.

Top 1000+ common PHP interview questions and answers are below

Next Page php interview questions and answers Next Page

Questions : 1 What is Full form of PHP ? Who is the father or inventor of PHP ?
Answers : 1 Rasmus Lerdorf is known as the father of PHP that started development of PHP in 1994
for their own Personal Home Page (PHP) and they released PHP/FI (Forms Interpreter) version 1.0 publicly on 8 June 1995 But in 1997 two Israeli developers named Zeev Suraski and Andi Gutmans rewrote the parser that formed the base of PHP 3 and then changed the language's name to the PHP: Hypertext Preprocessor.
   
Questions : 2 What are the differences between PHP3 and PHP4 and PHP5 ? what is the current stable version of PHP ? what advance thing in php7
Answers : 2 The current stable version of PHP is PHP 5.6.0 on 2014-08-28 with new Constant scalar expressions, variadic functions, exponentiation operator, argument unpacking, extensions of the use statement for functions and constants, new phpdbg debugger as a SAPI module etc. as still waiting for PHP6 or PHP7 with unicode handlig thing
There are lot of difference among PHP3 and PHP4 and PHP5 version of php so Difference mean oldest version have less functionality as compare to new one like
   
Questions : 3 Is variable name casesensitive ? could we start a variable with number like $4name ? What is the difference between $name and $$name? How to swap two variables without using 3rd temp variable
Answer : 3 Yes variable name casesensitive and we can not start a variable with number like $4name as A valid variable name starts with a letter or underscore, followed by any number of letters, numbers, or underscores.
where as $$ is variable of variable $name is variable where as $$name is variable of variable
like $name=sonia and $$name=singh so $sonia value is singh.
we can swap two variables by adding and subtracting method like below
$a=10,$b=5;
$a=$b+$a;//means $a=15 here
$b=$a-$b; //means $b=15-5=10
$a=$a-$b;// means $a=15-10=5
   
Questions : 4  What is use of header() function in php ? What the Limitation of HEADER()?
Answers : 4
In PHP Important to notice the Limitation of HEADER() function is that header() must be called before any actual output is send. Means must use header function before HTML or any echo stateament
There are Number of Use of HEADER() function in php like below
1> The header() function use to sends a raw HTTP header to a client.
2> We can use herder() function for redirection of pages.
3> Use for refresh the page on given time interval automatically.
4> To send email header content like cc, bcc , reply to etc data and lot more .
Advertisment
   
Questions : 5 How can we extract string "pcds.co.in" from a string "https://info@pcds.co.in" using regular expression of PHP? More on Reg can you explain
Answers : 5 We can extract string "pcds.co.in" using this
preg_match("/^https:\/\/.+@(.+)$/", "https://info@pcds.co.in", $matches);
echo $matches[1];
More On regular expression interview question with very nice examples in
   
Questions : 6 How do you connet mysql database with PHP ?
Answer : 6 We can connect Mysql Database with PHP using both Procedural and Object oriented style like below
$link = mysqli_connect("localhost", "username", "password", "dbofpcds");

$mysqli = new mysqli("localhost", "username", "password", "dbname");

and in old type of connectivity were
$link = mysql_connect("localhost", "username", "password");
mysql_select_db("database",$link);
   
Questions : 7 In how many ways we can retrieve the data in the result set of
MySQL using PHP? What is the difference between mysql_fetch_object and mysql_fetch_array ?
Answers : 7 we can retrieve the data in the result set of MySQL using PHP in 4 Ways
1. mysqli_fetch_row >> Get a result row as an enumerated array
2. mysqli_fetch_array >> Fetch a result row as associative and numeric array
3.mysqli_fetch_object >> Returns the current row of a result set as an object
4. mysqli_fetch_assoc >> Fetch a result row as an associative array
mysqli_fetch_object() is similar to mysqli_fetch_array(), with one difference -
an object is returned, instead of an array. Indirectly, that means that
we can only access the data by the field names, and not by their
offsets (numbers are illegal property names).
   
Questions : 8 How can we create a database using PHP and MySQL?
Answers : 8 We can create MySQL database with the use of
mysql_create_db("Database Name")
   
Questions : 9 What are the differences between require and include?
Answers : 9 Both include and require used to include a file but when included file not found
Include send Warning where as Require send Fatal Error .

   
Questions : 10  Can we use include ("xyz.PHP") two times in a PHP page "index.PHP"?
Answers : 10   Yes we can use include("xyz.php") more than one time in any page. but it create a prob when xyz.php file contain some funtions declaration then error will come for already declared function in this file else not a prob like if you want to show same content two time in page then must incude it two time not a prob
   
Questions : 11   What are the different tables(Engine) present in MySQL, which one is default?
Answers : 11  Following tables (Storage Engine) we can create
1. MyISAM(The default storage engine IN MYSQL Each MyISAM table is stored on disk in three files. The files have names that begin with the table name and have an extension to indicate the file type. An .frm file stores the table format. The data file has an .MYD (MYData) extension. The index file has an .MYI (MYIndex) extension. )
2. InnoDB(InnoDB is a transaction-safe (ACID compliant) storage engine for MySQL that has commit, rollback, and crash-recovery capabilities to protect user data.)
3. Merge
4. Heap (MEMORY)(The MEMORY storage engine creates tables with contents that are stored in memory. Formerly, these were known as HEAP tables. MEMORY is the preferred term, although HEAP remains supported for backward compatibility. )
5. BDB (BerkeleyDB)(Sleepycat Software has provided MySQL with the Berkeley DB transactional storage engine. This storage engine typically is called BDB for short. BDB tables may have a greater chance of surviving crashes and are also capable of COMMIT and ROLLBACK operations on transactions)
6. EXAMPLE
7. FEDERATED (It is a storage engine that accesses data in tables of remote databases rather than in local tables. )
8. ARCHIVE (The ARCHIVE storage engine is used for storing large amounts of data without indexes in a very small footprint. )
9. CSV (The CSV storage engine stores data in text files using comma-separated values format.)
10. BLACKHOLE (The BLACKHOLE storage engine acts as a "black hole" that accepts data but throws it away and does not store it. Retrievals always return an empty result)
   
Questions : 12 What are the differences between Get and post methods.
Answers : 12

There are some defference between GET and POST method
1. GET Method have some limit like only 2Kb data able to send for request
But in POST method unlimited data can we send
2. when we use GET method requested data show in url but
Not in POST method so POST method is good for send sensetive request

   
Questions : 13 How can I execute a PHP script using command line?
Answers : 13 Just run the PHP CLI (Command Line Interface) program and
provide the PHP script file name as the command line argument.
   
Questions : 14 Suppose your Zend engine supports the mode <? ?> Then how can u
configure your PHP Zend engine to support <?PHP ?> mode ?
Answers : 14 In php.ini file:
set
short_open_tag=on
to make PHP support
   
Questions : 15 Shopping cart online validation i.e. how can we configure Paypal,
etc.?
Answers : 15 Nothing more we have to do only redirect to the payPal url after
submit all information needed by paypal like amount,adresss etc.
   
Questions : 16 What is meant by nl2br()?
Answers : 16 Inserts HTML line breaks (<BR />) before all newlines in a string.
   
Questions : 17 What is htaccess? Why do we use this and Where?
Answers : 17 .htaccess files are configuration files of Apache Server which provide
a way to make configuration changes on a per-directory basis. A file,
containing one or more configuration directives, is placed in a particular
document directory, and the directives apply to that directory, and all
subdirectories thereof.
   
Questions : 18 How we get IP address of client, previous reference page etc ?
Answers : 18 By using $_SERVER['REMOTE_ADDR'],$_SERVER['HTTP_REFERER'] etc.
   
Questions : 19 What are the reasons for selecting lamp (Linux, apache, MySQL,
PHP) instead of combination of other software programs, servers and
operating systems?
Answers : 19 All of those are open source resource. Security of Linux is very
very more than windows. Apache is a better server that IIS both in
functionality and security. MySQL is world most popular open source
database. PHP is more faster that asp or any other scripting language.
   
Questions : 20 How can we encrypt and decrypt a data present in a MySQL table
using MySQL?
Answers : 20 AES_ENCRYPT () and AES_DECRYPT ()
   
Questions : 21 How can we encrypt the username and password using PHP?
Answers : 21 The functions in this section perform encryption and decryption, and
compression and uncompression:

encryption decryption
AES_ENCRYT() AES_DECRYPT()
ENCODE() DECODE()
DES_ENCRYPT() DES_DECRYPT()
ENCRYPT() Not available
MD5() Not available
OLD_PASSWORD() Not available
PASSWORD() Not available
SHA() or SHA1() Not available
Not available UNCOMPRESSED_LENGTH()
   
Questions : 22 What are the features and advantages of object-oriented
programming?
Answers : 22 One of the main advantages of OO programming is its ease of
modification; objects can easily be modified and added to a system there
by reducing maintenance costs. OO programming is also considered to be
better at modeling the real world than is procedural programming. It
allows for more complicated and flexible interactions. OO systems are
also easier for non-technical personnel to understand and easier for
them to participate in the maintenance and enhancement of a system
because it appeals to natural human cognition patterns.
For some systems, an OO approach can speed development time since many
objects are standard across systems and can be reused. Components that
manage dates, shipping, shopping carts, etc. can be purchased and easily
modified for a specific system
   
Questions : 23 What are the differences between procedure-oriented languages and
object-oriented languages?
Answers : 23 There are lot of difference between procedure language and object oriented like below
1>Procedure language easy for new developer but complex to understand whole software as compare to object oriented model
2>In Procedure language it is difficult to use design pattern mvc , Singleton pattern etc but in OOP you we able to develop design pattern
3>IN OOP language we able to ree use code like Inheritance ,polymorphism etc but this type of thing not available in procedure language on that our Fonda use COPY and PASTE .
   
Questions : 24 What is the use of friend function?
Answers : 24 Sometimes a function is best shared among a number of different
classes. Such functions can be declared either as member functions of
one class or as global functions. In either case they can be set to be
friends of other classes, by using a friend specifier in the class that
is admitting them. Such functions can use all attributes of the class
which names them as a friend, as if they were themselves members of that
class.
A friend declaration is essentially a prototype for a member function,
but instead of requiring an implementation with the name of that class
attached by the double colon syntax, a global function or member
function of another class provides the match.
   
Questions : 25 What are the differences between public, private, protected,
static, transient, final and volatile?
Answer : 25 Public: Public declared items can be accessed everywhere.
Protected: Protected limits access to inherited and parent
classes (and to the class that defines the item).
Private: Private limits visibility only to the class that defines
the item.
Static: A static variable exists only in a local function scope,
but it does not lose its value when program execution leaves this scope.
Final: Final keyword prevents child classes from overriding a
method by prefixing the definition with final. If the class itself is
being defined final then it cannot be extended.
transient: A transient variable is a variable that may not
be serialized.
volatile:
a variable that might be concurrently modified by multiple
threads should be declared volatile. Variables declared to be volatile
will not be optimized by the compiler because their value can change at
any time.
   
Questions : 26 What are the different types of errors in PHP?
Answer : 26 Three are three types of errors:1. Notices: These are trivial,
non-critical errors that PHP encounters while executing a script – for
example, accessing a variable that has not yet been defined. By default,
such errors are not displayed to the user at all – although, as you will
see, you can change this default behavior.2. Warnings: These are more serious errors – for example, attempting
to include() a file which does not exist. By default, these errors are
displayed to the user, but they do not result in script termination.3. Fatal errors: These are critical errors – for example,
instantiating an object of a non-existent class, or calling a
non-existent function. These errors cause the immediate termination of
the script, and PHP's default behavior is to display them to the user
when they take place.
   
Questions : 27 What is the functionality of the function strstr and stristr?
Answers : 27 strstr Returns part of string from the first occurrence of needle(sub string that we finding out ) to the end of string.
$email= 'sonialouder@gmail.com';
$domain = strstr($email, '@');
echo $domain; // prints @gmail.com
here @ is the needle
stristr is case-insensitive means able not able to diffrenciate between a and A
   
Questions : 28 How can we submit a form without a submit button?
Answer : 28 Java script submit() function is used for submit form without submit button
on click call document.formname.submit()
   
Questions : 29 How can we convert asp pages to PHP pages?
Answer : 29 there are lots of tools available for asp to PHP conversion. you can
search Google for that. the best one is available athttps://asp2php.naken.cc./
   
Questions : 30 What is the functionality of the function htmlentities?
Answer : 30 Convert all applicable characters to HTML entities
This function is identical to htmlspecialchars() in all ways, except
with htmlentities(), all characters which have HTML character entity
equivalents are translated into these entities.
   
Questions : 31 How can we get second of the current time using date function?
Answer : 31 $second = date("s");
   
Questions : 32 How can we convert the time zones using PHP?
Answer : 32 For convert the time zones using PHP we have to first set time zone
By using PHP function date_default_timezone_set()
If we want to set time zone of 'Europe/London' we have to call this funtion as
date_default_timezone_set('Europe/London')
so Now generate the timestamp for that particular timezone, on Sept 1st, 2012 at 8 am
$pcds = mktime(8, 0, 0, 9, 1, 2012);
Now set the other timezone like US/Eastern
date_default_timezone_set('US/Eastern');
date(DATE_RFC1123, $pcds) date(DATE_RFC1123, $pcds)
Output the date in a standard format (RFC1123)
   
Questions : 33 What is meant by urlencode and urldocode?
Answer : 33 URLencode returns a string in which all non-alphanumeric characters
except -_. have been replaced with a percent (%)
sign followed by two hex digits and spaces encoded as plus (+)
signs. It is encoded the same way that the posted data from a WWW form
is encoded, that is the same way as in
application/x-www-form-urlencoded
media type.

urldecode decodes any %##
encoding in the given string.

   
Questions : 34 What is the difference between the functions unlink and unset?
Answer : 34 unlink() deletes the given file from the file system.
unset() makes a variable undefined.
   
Questions : 35 How can we register the variables into a session?
Answer : 35 $_SESSION['name'] = "sonia";
   
Questions : 36 How can we get the properties (size, type, width, height) of an
image using PHP image functions?
Answer : 36 To know the Image type use exif_imagetype () function
To know the Image size use getimagesize () function
To know the image width use imagesx () function
To know the image height use imagesy() function t
   
Questions : 37 How can we get the browser properties using PHP?
Answer : 37 By using
$_SERVER['HTTP_USER_AGENT']
variable.

   
Questions : 38 What is the maximum size of a file that can be uploaded using PHP
and how can we change this?
Answer : 38 By default the maximum size is 2MB. and we can change the following
setup at php.iniupload_max_filesize = 2M
   
Questions : 39 How can we increase the execution time of a PHP script?
Answer : 39 by changing the following setup at php.inimax_execution_time = 30
; Maximum execution time of each script, in seconds
   
Questions : 40 How can we take a backup of a MySQL table and how can we restore
it. ?
Answer : 40 To backup: BACKUP TABLE tbl_name[,tbl_name…] TO
'/path/to/backup/directory'
RESTORE TABLE tbl_name[,tbl_name…] FROM '/path/to/backup/directory'mysqldump: Dumping Table Structure and DataUtility to dump a database or a collection of database for backup or
for transferring the data to another SQL server (not necessarily a MySQL
server). The dump will contain SQL statements to create the table and/or
populate the table.
-t, –no-create-info
Don't write table creation information (the CREATE TABLE statement).
-d, –no-data
Don't write any row information for the table. This is very useful if
you just want to get a dump of the structure for a table!
   
Questions : 41 How can we optimize or increase the speed of a MySQL select
query?
Answer : 41
  • first of all instead of using select * from table1, use select
    column1, column2, column3.. from table1
  • Look for the opportunity to introduce index in the table you are
    querying.
  • use limit keyword if you are looking for any specific number of
    rows from the result set.
   
Questions : 42 How many ways can we get the value of current session id?
Answer : 42 session_id() returns the session id for the current session.
   
Questions : 43 How can we destroy the session, how can we unset the variable of
a session?
Answer : 43 session_unregister — Unregister a global variable from the current
session
session_unset — Free all session variables
   
Questions : 44 How can we set and destroy the cookie n php?
Answer : 44 By using setcookie(name, value, expire, path, domain); function we can set the cookie in php ;
Set the cookies in past for destroy. like
setcookie("user", "sonia", time()+3600); for set the cookie
setcookie("user", "", time()-3600); for destroy or delete the cookies;
   
Questions : 45 How many ways we can pass the variable through the navigation
between the pages?
Answer : 45
  • GET/QueryString
  • POST
   
Questions : 46 What is the difference between ereg_replace() and eregi_replace()?
Answer : 46 eregi_replace() function is identical to ereg_replace() except that
this ignores case distinction when matching alphabetic
characters.eregi_replace() function is identical to ereg_replace()
except that this ignores case distinction when matching alphabetic
characters.
   
Questions : 47 What are the different functions in sorting an array?
Answer : 47 Sort(), arsort(),
asort(), ksort(),
natsort(), natcasesort(),
rsort(), usort(),
array_multisort(), and
uksort().
   
Questions : 48 How can we know the count/number of elements of an array?
Answer : 48 2 ways
a) sizeof($urarray) This function is an alias of count()
b) count($urarray)
   
Questions : 49 what is session_set_save_handler in PHP?
Answer : 49 session_set_save_handler() sets the user-level session storage functions which are used for storing and retrieving data associated with a session. This is most useful when a storage method other than those supplied by PHP sessions is preferred. i.e. Storing the session data in a local database.
   
Questions : 50 How can I know that a variable is a number or not using a
JavaScript?
Answer : 50 bool is_numeric ( mixed var)
Returns TRUE if var is a number or a numeric string, FALSE otherwise.or use isNaN(mixed var)The isNaN() function is used to check if a value is not a number.
   
Questions : 51 List out some tools through which we can draw E-R diagrams for
mysql.
Answer : 51 Case Studio
Smart Draw
   
Questions : 52 How can I retrieve values from one database server and store them
in other database server using PHP?
Answer : 52 we can always fetch from one database and rewrite to another. here
is a nice solution of it.$db1 = mysql_connect("host", "pcds", "password")
mysql_select_db("db1", $db1);
$res1 = mysql_query("query", $db1); $db2 = mysql_connect("host", "user", "pwd")
mysql_select_db("db2", $db2);
$res2 = mysql_query("query", $db2); At this point you can only fetch records from you previous ResultSet,
i.e $res1 – But you cannot execute new query in $db1, even if you
supply the link as because the link was overwritten by the new db.so at this point the following script will fail
$res3 = mysql_query("query", $db1);

take a look below.
$db1 = mysql_connect("host", "user", "pwd")
mysql_select_db("db1", $db1);
$res1 = mysql_query("query", $db1);

$db2 = mysql_connect("host", "user", "pwd", true)
mysql_select_db("db2", $db2);
$res2 = mysql_query( "query", $db2);

So mysql_connect has another optional boolean parameter which
indicates whether a link will be created or not. as we connect to the
$db2 with this optional parameter set to 'true', so both link will
remain live.

now the following query will execute successfully.
$res3 = mysql_query("query", $db1);

   
Questions : 53 List out the predefined classes in PHP?
Answer : 53 Directory
stdClass
__PHP_Incomplete_Class
exception
php_user_filter
   
Questions : 54 How can I make a script that can be bi-language (supports
English, German)?
Answer : 54 You can maintain two separate language file for each of the
language. all the labels are putted in both language files as variables
and assign those variables in the PHP source. on runtime choose the
required language option.
   
Questions : 55 What are the difference between abstract class and interface?
Answer : 55 Abstract class: abstract classes are the class where one or more
methods are abstract but not necessarily all method has to be abstract.
Abstract methods are the methods, which are declare in its class but not
define. The definition of those methods must be in its extending class.Interface: Interfaces are one type of class where all the methods are
abstract. That means all the methods only declared but not defined. All
the methods must be define by its implemented class.
   
Questions : 56 How can we send mail using JavaScript?
Answer : 56 JavaScript does not have any networking capabilities as it is
designed to work on client site. As a result we can not send mails using
JavaScript. But we can call the client side mail protocol mailto
via JavaScript to prompt for an email to send. this requires the client
to approve it.
   
Questions : 57 How can we repair a MySQL table?
Answer : 57 The syntex for repairing a MySQL table is
REPAIR TABLENAME, [TABLENAME, ], [Quick],[Extended]
This command will repair the table specified if the quick is given the
MySQL will do a repair of only the index tree if the extended is given
it will create index row by row
   
Questions : 58 What are the advantages of stored procedures, triggers, indexes?
Answer : 58 There are several advatage of these mostly like Stored procedures are compiled once and stored in executable form, so procedure calls are quick and efficient. Executable code is automatically cached and shared among users. This lowers memory requirements and invocation overhead.
By grouping SQL statements, a stored procedure allows them to be executed with a single call. This minimizes the use of slow networks, reduces network traffic, and improves round-trip response time. OLTP applications, in particular, benefit because result set processing eliminates network bottlenecks.
Additionally, stored procedures enable you to take advantage of the computing resources of the server.
   
Questions : 59 What is the maximum length of a table name, database name, and
fieldname in MySQL?
Answer : 59 The following table describes the maximum length for each type of
identifier.

Identifier Maximum Length
(bytes)
Database 64
Table 64
Column 64
Index 64
Alias 255

There are some restrictions on the characters that may appear in
identifiers:

   
Questions : 60 How many values can the SET function of MySQL take?
Answer : 60 MySQL set can take zero or more values but at the maximum it can
take 64 values
   
Questions : 61 What are the other commands to know the structure of table using
MySQL commands except explain command?
Answer : 61 describe Table-Name;
   
Questions : 62 How many tables will create when we create table, what are they?
Answer : 62 The '.frm' file stores the table definition.
The data file has a '.MYD' (MYData) extension.
The index file has a '.MYI' (MYIndex) extension,
   
Questions : 63 What is the purpose of the following files having extensions 1) .frm
2) .myd 3) .myi? What do these files contain?
Answer : 63 In MySql, the default table type is MyISAM.
Each MyISAM table is stored on disk in three files. The files have names
that begin with the table name and have an extension to indicate the
file type.
The '.frm' file stores the table definition.
The data file has a '.MYD' (MYData) extension.
The index file has a '.MYI' (MYIndex) extension,
   
Questions : 64 What is maximum size of a database in MySQL?
Answer : 64 If the operating system or filesystem places a limit on the number
of files in a directory, MySQL is bound by that constraint.The efficiency of the operating system in handling large numbers of
files in a directory can place a practical limit on the number of tables
in a database. If the time required to open a file in the directory
increases significantly as the number of files increases, database
performance can be adversely affected.
The amount of available disk space limits the number of tables.
MySQL 3.22 had a 4GB (4 gigabyte) limit on table size. With the MyISAM
storage engine in MySQL 3.23, the maximum table size was increased to
65536 terabytes (2567 – 1 bytes). With this larger allowed table size,
the maximum effective table size for MySQL databases is usually
determined by operating system constraints on file sizes, not by MySQL
internal limits.The InnoDB storage engine maintains InnoDB tables within a tablespace
that can be created from several files. This allows a table to exceed
the maximum individual file size. The tablespace can include raw disk
partitions, which allows extremely large tables. The maximum tablespace
size is 64TB.
The following table lists some examples of operating system file-size
limits. This is only a rough guide and is not intended to be definitive.
For the most up-to-date information, be sure to check the documentation
specific to your operating system.
Operating System File-size LimitLinux 2.2-Intel 32-bit 2GB (LFS: 4GB)
Linux 2.4+ (using ext3 filesystem) 4TB
Solaris 9/10 16TB
NetWare w/NSS filesystem 8TB
Win32 w/ FAT/FAT32 2GB/4GB
Win32 w/ NTFS 2TB (possibly larger)
MacOS X w/ HFS+ 2TB
   
Questions : 65 Give the syntax of Grant and Revoke commands?
Answer : 65 The generic syntax for grant is as following
> GRANT [rights] on [database/s] TO [username@hostname] IDENTIFIED BY
[password]
now rights can be
a) All privileges
b) combination of create, drop, select, insert, update and delete etc.We can grant rights on all databse by using *.* or some specific
database by database.* or a specific table by database.table_name
username@hotsname can be either username@localhost, username@hostname
and username@%
where hostname is any valid hostname and % represents any name, the *.*
any condition
password is simply the password of userThe generic syntax for revoke is as following
> REVOKE [rights] on [database/s] FROM [username@hostname]
now rights can be as explained above
a) All privileges
b) combination of create, drop, select, insert, update and delete etc.
username@hotsname can be either username@localhost, username@hostname
and username@%
where hostname is any valid hostname and % represents any name, the *.*
any condition
   
Questions : 66 Explain Normalization concept?
Answer : 66 The normalization process involves getting our data to conform to
three progressive normal forms, and a higher level of normalization
cannot be achieved until the previous levels have been achieved (there
are actually five normal forms, but the last two are mainly academic and
will not be discussed).First Normal FormThe First Normal Form (or 1NF) involves removal of redundant data
from horizontal rows. We want to ensure that there is no duplication of
data in a given row, and that every column stores the least amount of
information possible (making the field atomic).Second Normal FormWhere the First Normal Form deals with redundancy of data across a
horizontal row, Second Normal Form (or 2NF) deals with redundancy of
data in vertical columns. As stated earlier, the normal forms are
progressive, so to achieve Second Normal Form, your tables must already
be in First Normal Form.Third Normal Form

I have a confession to make; I do not often use Third Normal Form. In
Third Normal Form we are looking for data in our tables that is not
fully dependant on the primary key, but dependant on another value in
the table

   
Questions : 67 How can we find the number of rows in a table using MySQL?
Answer : 67 Use this for mysql
>SELECT COUNT(*) FROM table_name;
   
Questions : 68 How can we find the number of rows in a result set using PHP?
Answer : 68 $result = mysql_query($sql, $db_link);
$num_rows = mysql_num_rows($result);
echo "$num_rows rows found";
   
Questions : 69 How many ways we can we find the current date using MySQL?
Answer : 69 SELECT CURDATE();
CURRENT_DATE() = CURDATE()
for time use
SELECT CURTIME();
CURRENT_TIME() = CURTIME()
   
Questions : 70 What are the advantages and disadvantages of Cascading Style
Sheets?
Answer : 70 External Style SheetsAdvantagesCan control styles for multiple documents at once. Classes can be
created for use on multiple HTML element types in many documents.
Selector and grouping methods can be used to apply styles under complex
contextsDisadvantagesAn extra download is required to import style information for each
document The rendering of the document may be delayed until the external
style sheet is loaded Becomes slightly unwieldy for small quantities of
style definitionsEmbedded Style Sheets

Advantages

Classes can be created for use on multiple tag types in the document.
Selector and grouping methods can be used to apply styles under complex
contexts. No additional downloads necessary to receive style information

Disadvantages

This method can not control styles for multiple documents at once

Inline Styles

Advantages

Useful for small quantities of style definitions. Can override other
style specification methods at the local level so only exceptions need
to be listed in conjunction with other style methods

Disadvantages

Does not distance style information from content (a main goal of
SGML/HTML). Can not control styles for multiple documents at once.
Author can not create or control classes of elements to control multiple
element types within the document. Selector grouping methods can not be
used to create complex element addressing scenarios

   
Questions : 71 What type of inheritance that PHP supports?
Answer : 71 In PHP an extended class is always dependent on a single base class,
that is, multiple inheritance is not supported. Classes are extended
using the keyword 'extends'.
   
Questions : 72 What is the difference between Primary Key and
Unique key?
Answer : 72 Primary Key: A column in a table whose values uniquely identify the
rows in the table. A primary key value cannot be NULL.

Unique Key: Unique Keys are used to uniquely identify each row in the
table. There can be one and only one row for each unique key value. So
NULL can be a unique key.There can be only one primary key for a table but there can be more
than one unique for a table.

   

Question : 73
what is garbage collection? default time ? refresh time?
Answer : 73 Garbage Collection is an automated part of PHP , If the Garbage Collection process runs, it then analyzes any files in the /tmp for any session files that have not been accessed in a certain amount of time and physically deletes them. Garbage Collection process only runs in the default session save directory, which is /tmp. If you opt to save your sessions in a different directory, the Garbage Collection process will ignore it. the Garbage Collection process does not differentiate between which sessions belong to whom when run. This is especially important note on shared web servers. If the process is run, it deletes ALL files that have not been accessed in the directory. There are 3 PHP.ini variables, which deal with the garbage collector: PHP ini value name default session.gc_maxlifetime 1440 seconds or 24 minutes session.gc_probability 1 session.gc_divisor 100
   
Questions : 74 What are the advantages/disadvantages of MySQL and PHP?
Answer : 74 Both of them are open source software (so free of cost), support
cross platform. php is faster then ASP and JSP.
   
Questions : 75 What is the difference between GROUP BY and ORDER BY in Sql?
Answer : 75 ORDER BY [col1],[col2],…,[coln]; Tels DBMS according to what columns
it should sort the result. If two rows will hawe the same value in col1
it will try to sort them according to col2 and so on.GROUP BY
[col1],[col2],…,[coln]; Tels DBMS to group results with same value of
column col1. You can use COUNT(col1), SUM(col1), AVG(col1) with it, if
you want to count all items in group, sum all values or view average
   
Questions : 76 What is the difference between char and varchar data types?
Answer : 76 Set char to occupy n bytes and it will take n bytes even if u r
storing a value of n-m bytes
Set varchar to occupy n bytes and it will take only the required space
and will not use the n bytes
eg. name char(15) will waste 10 bytes if we store 'romharshan', if each char
takes a byte
eg. name varchar(15) will just use 5 bytes if we store 'romharshan', if each
char takes a byte. rest 10 bytes will be free.
   
Questions : 77 What is the functionality of md5 function in PHP?
Answer : 77 Calculate the md5 hash of a string. The hash is a 32-character
hexadecimal number. I use it to generate keys which I use to identify
users etc. If I add random no techniques to it the md5 generated now
will be totally different for the same string I am using.
   
Questions : 78 How can I load data from a text file into a table?
Answer : 78 you can use LOAD DATA INFILE file_name; syntax to load data
from a text file. but you have to make sure thata) data is delimited
b) columns and data matched correctly
   
Questions : 79 How can we know the number of days between two given dates using
MySQL?
Answer : 79 SELECT DATEDIFF("2007-03-07","2005-01-01");
   
Questions : 80 How can we know the number of days between two given dates using PHP?
Answer : 80 $date1 = date("Y-m-d");
$date2 = "2006-08-15";
$days = (strtotime($date1) - strtotime($date2)) / (60 * 60 * 24);
   
Questions : 81 How we load all classes that placed in different directory in one PHP File , means how to do auto load classes
Answer : 81

by using spl_autoload_register('autoloader::funtion');

Like below

class autoloader

{

public static function moduleautoloader($class)

{

$path = $_SERVER['DOCUMENT_ROOT'] . "/modules/{$class}.php";

if (is_readable($path)) require $path;

}

public static function daoautoloader($class)

{

$path = $_SERVER['DOCUMENT_ROOT'] . "/dataobjects/{$class}.php";

if (is_readable($path)) require $path;

}

public static function includesautoloader($class)

{

$path = $_SERVER['DOCUMENT_ROOT'] . "/includes/{$class}.php";

if (is_readable($path)) require $path;

}

}

spl_autoload_register('autoloader::includesautoloader');

spl_autoload_register('autoloader::daoautoloader');

spl_autoload_register('autoloader::moduleautoloader');

   
Questions : 82 How many types of Inheritances used in PHP and how we achieve it
Answer : 82 As far PHP concern it only support single Inheritance in scripting.
we can also use interface to achieve multiple inheritance.
   
Questions : 83 PHP how to know user has read the email?
Answers : 83 Using Disposition-Notification-To: in mailheader we can get read receipt.
Add the possibility to define a read receipt when sending an email.
It’s quite straightforward, just edit email.php, and add this at vars definitions:
var $readReceipt = null;
And then, at ‘createHeader’ function add:
if (!empty($this->readReceipt)) {
$this->__header .= ‘Disposition-Notification-To: ‘ . $this->__formatAddress($this->readReceipt) . $this->_newLine;
}
   
Questions : 84 What are default session time and path?
Answers : 84 default session time in PHP is 1440 seconds or 24 minutes
Default session save path id temporary folder /tmp
   
Questions : 85 how to track user logged out or not? when user is idle ?
Answers : 85 By checking the session variable exist or not while loading th page. As the session will exist longer as till browser closes. The default behaviour for sessions is to keep a session open indefinitely and only to expire a session when the browser is closed. This behaviour can be changed in the php.ini file by altering the line session.cookie_lifetime = 0 to a value in seconds. If you wanted the session to finish in 5 minutes you would set this to session.cookie_lifetime = 300 and restart your httpd server.
   
Questions : 86 how to track no of user logged in ?
Answers : 86 whenever a user logs in track the IP, userID etc..and store it in a DB with a active flag while log out or sesion expire make it inactive. At any time by counting the no: of active records we can get the no: of visitors.
   
Questions : 87 in PHP for pdf which library used?
Answers : 87 The PDF functions in PHP can create PDF files using the PDFlib library With version 6, PDFlib offers an object-oriented API for PHP 5 in addition to the function-oriented API for PHP 4. There is also the » Panda module. FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs. FPDF requires no extension (except zlib to activate compression and GD for GIF support) and works with PHP4 and PHP5.
   
Questions : 88 for image work which library?
Answers : 88 we will need to compile PHP with the GD library of image functions for this to work. GD and PHP may also require other libraries, depending on which image formats you want to work with.
   
Questions : 89 what is design pattern? explain all including singleton pattern?
Answers : 89 A design pattern is a general reusable solution to a commonly occurring problem in software design.
The Singleton design pattern allows many parts of a program to share a single resource without having to work out the details of the sharing themselves.
   
Questions : 90 what are magic methods?
Answers : 90 Magic methods are the members functions that is available to all the instance of class Magic methods always starts with "__". Eg. __construct All magic methods needs to be declared as public To use magic method they should be defined within the class or program scope Various Magic Methods used in PHP 5 are: __construct() __destruct() __set() __get() __call() __toString() __sleep() __wakeup() __isset() __unset() __autoload() __clone()
   
Questions : 91 what is magic quotes?
Answers : 91 Magic Quotes is a process that automagically escapes ncoming data to the PHP script. It’s preferred to code with magic quotes off and to instead escape the data at runtime, as needed. This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 6.0.0. Relying on this feature is highly discouraged.
   
Questions : 92 what is cross site scripting? SQL injection?
Answers : 92 Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications which allow code injection by malicious web users into the web pages viewed by other users. Examples of such code include HTML code and client-side scripts. SQL injection is a code injection technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed
   
Questions : 93 what is URL rewriting?
Answers : 93 Using URL rewriting we can convert dynamic URl to static URL Static URLs are known to be better than Dynamic URLs because of a number of reasons 1. Static URLs typically Rank better in Search Engines. 2. Search Engines are known to index the content of dynamic pages a lot slower compared to static pages. 3. Static URLs are always more friendlier looking to the End Users. along with this we can use URL rewriting in adding variables [cookies] to the URL to handle the sessions.
   
Questions : 94 what is the major php security hole? how to avoid?
Answers : 94 1. Never include, require, or otherwise open a file with a filename based on user input, without thoroughly checking it first.
2. Be careful with eval() Placing user-inputted values into the eval() function can be extremely dangerous. You essentially give the malicious user the ability to execute any command he or she wishes!
3. Be careful when using register_globals = ON It was originally designed to make programming in PHP easier (and that it did), but misuse of it often led to security holes
4. Never run unescaped queries
5. For protected areas, use sessions or validate the login every time.
6. If you don’t want the file contents to be seen, give the file a .php extension.
   
Questions : 95 whether PHP supports Microsoft SQL server ?
Answers : 95 The SQL Server Driver for PHP v1.0 is designed to enable reliable, scalable integration with SQL Server for PHP applications deployed on the Windows platform. The Driver for PHP is a PHP 5 extension that allows the reading and writing of SQL Server data from within PHP scripts. using MSSQL or ODBC modules we can access Microsoft SQL server.
   
Questions : 96 what is MVC? why its been used?
Answers : 96 Model-view-controller (MVC) is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other. In MVC, the model represents the information (the data) of the application; the view corresponds to elements of the user interface such as text, checkbox items, and so forth; and the controller manages the communication of data and the business rules used to manipulate the data to and from the model. WHY ITS NEEDED IS 1 Modular separation of function 2 Easier to maintain 3 View-Controller separation means:
A — Tweaking design (HTML) without altering code B — Web design staff can modify UI without understanding code
   
Questions : 97 what is framework? how it works? what is advantage?
Answers : 97 In general, a framework is a real or conceptual structure intended to serve as a support or guide for the building of something that expands the structure into something useful. Advantages : Consistent Programming Model Direct Support for Security Simplified Development Efforts Easy Application Deployment and Maintenance
   
Questions : 98 what is CURL?
Answers : 98 CURL means Client URL Library
curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos…), file transfer resume, proxy tunneling and a busload of other useful tricks.
CURL allows you to connect and communicate to many different types of servers with many different types of protocols. libcurl currently supports the http, https, ftp, gopher, telnet, dict, file, and ldap protocols. libcurl also supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading (this can also be done with PHP’s ftp extension), HTTP form based upload, proxies, cookies, and user+password authentication.
   
Questions : 99 what is PDO ?
Answers : 99

The PDO ( PHP Data Objects ) extension defines a lightweight, consistent interface for accessing databases in PHP. if you are using the PDO API, you could switch the database server you used, from say PgSQL to MySQL, and only need to make minor changes to your PHP code.

While PDO has its advantages, such as a clean, simple, portable API but its main disadvantage is that it doesn't allow you to use all of the advanced features that are available in the latest versions of MySQL server. For example, PDO does not allow you to use MySQL's support for Multiple Statements.

Just need to use below code for connect mysql using PDO
try {
$dbh = new PDO("mysql:host=$hostname;dbname=databasename", $username, $password);
$sql = "SELECT * FROM employee";
foreach ($dbh->query($sql) as $row)
{
print $row['employee_name'] .' - '. $row['employee_age'] ;
}
}
catch(PDOException $e)
{
echo $e->getMessage();
}
   
Questions : 100 What is PHP's mysqli Extension?
Answers : 100

The mysqli extension, or as it is sometimes known, the MySQL improved extension, was developed to take advantage of new features found in MySQL systems versions 4.1.3 and newer. The mysqli extension is included with PHP versions 5 and later.

The mysqli extension has a number of benefits, the key enhancements over the mysql extension being:
=>Object-oriented interface
=>Support for Prepared Statements
=>Support for Multiple Statements
=>Support for Transactions
=>Enhanced debugging capabilities
=>Embedded server support

Go On Top

Next Page php interview questions and answers Next Page

Download PHP eBooks PDF
  • what are the bugs move from PHP 4 to PHP 5 ?
    PHP question Posted by: samti at Date : 01-02-2010
  • how to send sms and bulk sms using php and mysql need simple way help out thanks
    PHP question Posted by: chandan at Date : 20-02-2010
  • i have problem in sending mail with long message in php.i want to know up to what size i can use message option of function mail().
    PHP question Posted by: Mangesh at Date : 01-03-2010
  • Hello ! I need 2 things. 1. A php script that can use an email from any desired email id. 2. a php script that is used to collect the form data and save it in a text file on the server. plz help !!!!!!!
    PHP question Posted by: Nzeeshan at Date : 06-04-2010
  • php developer
    PHP question Posted by: sumit mishra at Date : 12-08-2010
  • php developer
    PHP question Posted by: sumit mishra at Date : 13-08-2010
  • pls send me latest php question n answer.
    PHP question Posted by: Mohd.Khalid at Date : 27-08-2010
  • can u convert one language to another lanaguage in php
    PHP question Posted by: shrikant at Date : 05-02-2011
  • INTERVIEW QUEATION & ANSWER PHP
    PHP question Posted by: MANOJ KUMAR SINHA at Date : 07-02-2011
  • Php & Mysql
    PHP question Posted by: Vikas Abhishek at Date : 08-02-2011
  • PHP QUESTION & ANSWER
    PHP question Posted by: MANOJ KUMAR SINHA at Date : 15-02-2011
  • Which is easy way to learn Complete PHP?
    PHP question Posted by: Thakkar Sandeep J. at Date : 15-03-2011
  • what is an ajax and how it is used in php
    PHP question Posted by: sumit at Date : 12-05-2011
  • send php interview Question plz
    PHP question Posted by: vimlesh at Date : 13-05-2011
  • codeigniter framework and Zend framework in php
    PHP question Posted by: praveen at Date : 16-06-2011
  • HI .......... I NEED PHP INTERVIEW TIPS AND MATERIALS. PLEASE SEND TO MY MAIL ID
    PHP question Posted by: PANDI.P at Date : 20-06-2011
  • HI .......... I NEED PHP INTERVIEW TIPS AND MATERIALS. PLEASE SEND TO MY MAIL ID
    PHP question Posted by: PANDI.P at Date : 20-06-2011
  • How to connect Ms Access Database using PHP?
    PHP question Posted by: prabhakar at Date : 21-06-2011
  • I want Traning in Php programning as company
    PHP question Posted by: mukesh at Date : 22-06-2011
  • what is type of application php ?
    PHP question Posted by: sanjay at Date : 22-06-2011
  • Dear Sir / Madam ; Please give a name of the some of the institutions on kolkatta offered the PHP and my sql and the course fee and duration of the course with best regards; Deepak sen Mob 8984150465
    PHP question Posted by: Deepak Sen at Date : 25-06-2011
  • I am shahid equebal from noida. i am a MCA student, this time i am doing PHP.
    PHP question Posted by: Shahid at Date : 26-06-2011
  • Hi sir i am Raghavendra form bangalore currently working as a system admin and i need to change my job stream to php developer so can you provide me the details Regards Raghu
    PHP question Posted by: Raghavendra BR at Date : 27-06-2011
  • whats the real advantage of php
    PHP question Posted by: vipin at Date : 28-06-2011
  • whats the real advantage of php
    PHP question Posted by: vipin at Date : 28-06-2011
  • what is diffrence between php &asp
    PHP question Posted by: naeem at Date : 29-06-2011
  • php inbterview question
    PHP question Posted by: indreshbit07 at Date : 29-06-2011
  • Can I get the job as a php developer in canada?If Yes then tell me some companys name.
    PHP question Posted by: Pranav at Date : 01-07-2011
  • how maney typ of php
    PHP question Posted by: amit kumar at Date : 02-07-2011
  • whats differents php and asp.net why use php,how many scope in gurlf country php,
    PHP question Posted by: sameer at Date : 06-07-2011
  • am working PHP last 2 years.am strong in PHP, JQuery and AJAX
    PHP question Posted by: jerald at Date : 07-07-2011
  • Dear Sir / Madam I am dinesh. i finished php and mysql courses for NIIT Salem, Experience two year Hardware and Networking . Any job php related job please inform my email id:dineshmurali1@in.com, cell:9488542089
    PHP question Posted by: dinesh at Date : 07-07-2011
  • what are the advantages of php?
    PHP question Posted by: shobanasekaran at Date : 09-07-2011
  • I have completed PHP Course from Cegon soft, and i have one year experience in php development...
    PHP question Posted by: shamlah at Date : 12-07-2011
  • What is the different between php and core php?
    PHP question Posted by: Neha Shah at Date : 12-07-2011
  • I need some php training and I prefer to work in kerala
    PHP question Posted by: kalyani at Date : 13-07-2011
  • what is mvc structure of php
    PHP question Posted by: ramalingeswarudu at Date : 15-07-2011
  • currently i am in 5th sem of mca (B.H. Gardi college of Engg & Tech, Rajkot).I have little knowledge of Php, Mysql.
    PHP question Posted by: Ravi Thanki at Date : 16-07-2011
  • The real meaning of first P in PHP.
    PHP question Posted by: Sonu Sindhu at Date : 16-07-2011
  • how i can validation in php
    PHP question Posted by: vipin chauhan at Date : 16-07-2011
  • i have learned php and my sql via javascripts and c programming and i can do work on any project !
    PHP question Posted by: shivam at Date : 16-07-2011
  • learning the php software
    PHP question Posted by: prakash patil at Date : 18-07-2011
  • Basically, i am on designing side. So I want to get into programming. So I need application oriented training in php. Could you please respond quickly and help me out in this.
    PHP question Posted by: Ginni Kalyana Geethika at Date : 19-07-2011
  • what is pay scale in php jobs for freshers?
    PHP question Posted by: K.K. Alam at Date : 19-07-2011
  • jobs for fresher in PHP technology.and i need some ebooks for PHP
    PHP question Posted by: sujitha at Date : 20-07-2011
  • finding a job in php
    PHP question Posted by: jalpa at Date : 20-07-2011
  • I want to change the color of image by selecting a color from color picker. please assist me how can i do this using php
    PHP question Posted by: jagjit at Date : 21-07-2011
  • Am a B.E CSE canditate .. am interesting in PHP .. so i wish to work in PHP based works ,what kind of job they offers for me.
    PHP question Posted by: lincy at Date : 23-07-2011
  • what is the use of php?
    PHP question Posted by: J.Danielarulraj at Date : 26-07-2011
  • i am job searching in php and mysql so i will join free training any details send me my gmail address
    PHP question Posted by: rajendran at Date : 27-07-2011
  • what is php array?
    PHP question Posted by: kokila at Date : 28-07-2011
  • scope of php? IS there good jobs related php????
    PHP question Posted by: bulbul at Date : 28-07-2011
  • Dear Sir/Madam, I am searching for the job of PHP DEVELOPER. Kindly help me by allowing read/download these e-books so that these may help to get me job. Thanks Regards Sandeep Kumar Kuldeep
    PHP question Posted by: Sandeep Kumar Kuldeep at Date : 01-08-2011
  • could you send me chat program and sms program using php script
    PHP question Posted by: venu at Date : 02-08-2011
  • IN php,can i use datbase
    PHP question Posted by: rupesh kumar panda at Date : 03-08-2011
  • how do email check for php and javascript ?
    PHP question Posted by: Sushanta Roy at Date : 06-08-2011
  • how do email check for php and javascript ?
    PHP question Posted by: Sushanta Roy at Date : 06-08-2011
  • how do email check for php and javascript ?
    PHP question Posted by: Sushanta Roy at Date : 06-08-2011
  • php job in ahmedabad near sabarmati
    PHP question Posted by: suresh at Date : 09-08-2011
  • if php or .net is better for the future?
    PHP question Posted by: Philip Rajan at Date : 09-08-2011
  • whether php or .net is better for the future
    PHP question Posted by: Vijish Vijayan at Date : 09-08-2011
  • How can i send a mail in php with attachment?
    PHP question Posted by: shashi kanth at Date : 11-08-2011
  • java,asp.net,php
    PHP question Posted by: S.Madavi at Date : 11-08-2011
  • how can implement php file?
    PHP question Posted by: sonai at Date : 12-08-2011
  • Hi, I would like to get online PHP Training from PCDS. Let me know the course details and its fee structure. Regards Naveen
    PHP question Posted by: Naveen at Date : 12-08-2011
  • php qusten
    PHP question Posted by: satish kumar verma at Date : 13-08-2011
  • what is drupal and joomla in PHP, how it is useful , and what is difference between that two?
    PHP question Posted by: Trupti at Date : 15-08-2011
  • PHP, what is the output here? $x = 0; switch ($x) { case "0": echo "String"; break; case 0: echo "Integer"; break; case NULL: echo "NULL"; break; case FALSE: echo "Boolean"; break; case "": echo "Empty string"; break; default: echo "Something else"; break; }
    PHP question Posted by: Divya at Date : 18-08-2011
  • how to validate p php form using script?if we enter a person who is not in database...how alert box is given?
    PHP question Posted by: aravind babu at Date : 20-08-2011
  • Hi,i did B.E CSE AND i need for job based on PHP
    PHP question Posted by: manikandan at Date : 20-08-2011
  • i m fresher in php but when i read ur this interview question page i m very upset because i dont have any about that kind of question so could u send me a fresher level question answer on my id or plz can u tell what should i know about the php in fresher level or how can i enhance the knowledge about php and give me a right direction to learn php i already completed a this course in ln last weed but still i m confused plz give me ur feedback on my id i m waitng for ur reply thanx
    PHP question Posted by: arya at Date : 21-08-2011
  • Is php sites to be hacked or not if yes then how and if no then how ?
    PHP question Posted by: kulwant singh at Date : 24-08-2011
  • I am searching job of php programmer. I am 3 year diploma holder in IT. I am fresher and I have searching job in Delhi, Noida and Dehradun.
    PHP question Posted by: Siddharth Kumar at Date : 24-08-2011
  • i want php & .net job
    PHP question Posted by: Ramniwas at Date : 26-08-2011
  • Hi dear sir/madam, I want read php course can you help me how can I read this language, So pls you have any idea, and work this field, I know HTML photo shop COROLDROW FLASH. So pls help me. Thanks and Regard Ajay kumar rai 9250936149
    PHP question Posted by: AJAY KUMAR RAI at Date : 26-08-2011
  • I am fresher and looking for job in php
    PHP question Posted by: saravanashankar at Date : 26-08-2011
  • can i get full php,mysql questions and answers?
    PHP question Posted by: arockiya raj at Date : 27-08-2011
  • php interviews
    PHP question Posted by: avinash at Date : 28-08-2011
  • Html,Css,Php,MySql,Sql,PlSql
    PHP question Posted by: Ranjeet Kumar Singh at Date : 28-08-2011
  • experienced devloper in php
    PHP question Posted by: rahul tripathi at Date : 29-08-2011
  • i am looking for php job
    PHP question Posted by: sudhakar at Date : 30-08-2011
  • what is oops in php? and what is mvc in php?
    PHP question Posted by: sankar at Date : 01-09-2011
  • i am fresher and want to php project trainning and jobs
    PHP question Posted by: trushal chunilal makwana at Date : 03-09-2011
  • i am fresher and want to php project trainning and jobs
    PHP question Posted by: trushal chunilal makwana at Date : 03-09-2011
  • i wanna apply for php jobs
    PHP question Posted by: Ashish at Date : 03-09-2011
  • PHP question Posted by: nitin at Date : 03-09-2011
  • PHP question Posted by: nitin at Date : 03-09-2011
  • php jobs in india
    PHP question Posted by: Arindam Nath at Date : 05-09-2011
  • Dear sir/madam i am in b.tech 3rd year(I.T) and i have good skill in php language with sql database which type of jod is available for me in companies. I have done many projects on websites ..
    PHP question Posted by: Anil Bodla at Date : 05-09-2011
  • Common UNIX Commands for PHP Developers
    PHP question Posted by: Navis Michael Bearly at Date : 05-09-2011
  • i had work for php/mysql only for 3 months so any company give me training for joomla, xml, flash. if so then please reply me
    PHP question Posted by: krishna khandare at Date : 06-09-2011
  • Why use we in PHP we use which type of command?
    PHP question Posted by: daulat at Date : 06-09-2011
  • Does your Institute Provide Free Training in PHP ? I Have Sound Knowledge ASP.Net and I am Interested To Learn PHP.
    PHP question Posted by: Vijay kumar at Date : 06-09-2011
  • Does your Institute Provide Free Training in PHP ? I Have Sound Knowledge ASP.Net and I am Interested To Learn PHP.
    PHP question Posted by: Vijay kumar at Date : 06-09-2011
  • hi sir, Present i am working a PHP Developer in Primaccess Technologies pvt ltd in Hyderabad from 1 year. please send me php jobs to my mail id. my mail id is ktr.msc09@gmail.com. thanking you sir,
    PHP question Posted by: tikkanna reddy k at Date : 07-09-2011
  • hi sir, Present i am working a PHP Developer in Primaccess Technologies pvt ltd in Hyderabad from 1 year. please send me php jobs to my mail id. my mail id is ktr.msc09@gmail.com. thanking you sir,
    PHP question Posted by: tikkanna reddy k at Date : 07-09-2011
  • I should all top most question of php,mysql,zendframwork for fresher.
    PHP question Posted by: Manish kumar at Date : 08-09-2011
  • what is php?
    PHP question Posted by: vamshi at Date : 10-09-2011
  • Muhammad Bilal House #1538 Mohalla khatkana bilmukabil Askari CNG near Aziz hotel chowk Multan. 0336-6309044 OBJECTIVE To work and grow with a prestigious organization that offer growth opportunities for professional advancement, where people with vision are mattered, and where talent is considered as competitive edge over competitors. EDUCATIONAL QUALIFICATION  M.cs 2011 The Islamia University of Bahawalpur  INTERPERSONAL SKILLS  Disciplined and having strong sense of responsibility  Self-confident, hard-working and result oriented  Maintained positive relationship with peers and superiors. PROFESSIONAL SKILLS  Experience in web Programming  PHP Two month experience  Java Script Two month experience  HTML Two month experience  CSS  TOOLs& Technologies used Adobe Dreamweaver,vertrigo Server,  Database used MySql.  Familiar with C/C++,Java ,wordpress,ajax. Prominent Academic Projects Make some projects Like  Educational Website  In this site Students,Teachers & casual users can search their own required information Online.  The users can dynamically interact online with webpages.  Online Sale Purchase System(Semester project)  In this product user can sale his/her project and also can purchased required product He/She can beds the product and finally product will be sold the maximum beds amount. PHP used as front end and MYSQL database as backend. PERSONAL PROFILE  Father’s Name : Muhammad Rafiq  Nationality : Pakistani  Marital Status : Single  N.I.C No : 32402-8753394-5  Religion : Islam  Contact No : 0336-6309044  Domicile : Punjab REFERENCE Reference will be furnished on demand. Muhammad Bilal House #1538 Mohalla khatkana bilmukabil Askari CNG near Aziz hotel chowk Multan. 0336-6309044 OBJECTIVE To work and grow with a prestigious organization that offer growth opportunities for professional advancement, where people with vision are mattered, and where talent is considered as competitive edge over competitors. EDUCATIONAL QUALIFICATION  M.cs 2011 The Islamia University of Bahawalpur  INTERPERSONAL SKILLS  Disciplined and having strong sense of responsibility  Self-confident, hard-working and result oriented  Maintained positive relationship with peers and superiors. PROFESSIONAL SKILLS  Experience in web Programming  PHP Two month experience  Java Script Two month experience  HTML Two month experience  CSS  TOOLs& Technologies used Adobe Dreamweaver,vertrigo Server,  Database used MySql.  Familiar with C/C++,Java ,wordpress,ajax. Prominent Academic Projects Make some projects Like  Educational Website  In this site Students,Teachers & casual users can search their own required information Online.  The users can dynamically interact online with webpages.  Online Sale Purchase System(Semester project)  In this product user can sale his/her project and also can purchased required product He/She can beds the product and finally product will be sold the maximum beds amount. PHP used as front end and MYSQL database as backend. PERSONAL PROFILE  Father’s Name : Muhammad Rafiq  Nationality : Pakistani  Marital Status : Single  N.I.C No : 32402-8753394-5  Religion : Islam  Contact No : 0336-6309044  Domicile : Punjab REFERENCE Reference will be furnished on demand. Muhammad Bilal House #1538 Mohalla khatkana bilmukabil Askari CNG near Aziz hotel chowk Multan. 0336-6309044 OBJECTIVE To work and grow with a prestigious organization that offer growth opportunities for professional advancement, where people with vision are mattered, and where talent is considered as competitive edge over competitors. EDUCATIONAL QUALIFICATION  M.cs 2011 The Islamia University of Bahawalpur  INTERPERSONAL SKILLS  Disciplined and having strong sense of responsibility  Self-confident, hard-working and result oriented  Maintained positive relationship with peers and superiors. PROFESSIONAL SKILLS  Experience in web Programming  PHP Two month experience  Java Script Two month experience  HTML Two month experience  CSS  TOOLs& Technologies used Adobe Dreamweaver,vertrigo Server,  Database used MySql.  Familiar with C/C++,Java ,wordpress,ajax. Prominent Academic Projects Make some projects Like  Educational Website  In this site Students,Teachers & casual users can search their own required information Online.  The users can dynamically interact online with webpages.  Online Sale Purchase System(Semester project)  In this product user can sale his/her project and also can purchased required product He/She can beds the product and finally product will be sold the maximum beds amount. PHP used as front end and MYSQL database as backend. PERSONAL PROFILE  Father’s Name : Muhammad Rafiq  Nationality : Pakistani  Marital Status : Single  N.I.C No : 32402-8753394-5  Religion : Islam  Contact No : 0336-6309044  Domicile : Punjab REFERENCE Reference will be furnished on demand. Muhammad Bilal House #1538 Mohalla khatkana bilmukabil Askari CNG near Aziz hotel chowk Multan. 0336-6309044 OBJECTIVE To work and grow with a prestigious organization that offer growth opportunities for professional advancement, where people with vision are mattered, and where talent is considered as competitive edge over competitors. EDUCATIONAL QUALIFICATION  M.cs 2011 The Islamia University of Bahawalpur  INTERPERSONAL SKILLS  Disciplined and having strong sense of responsibility  Self-confident, hard-working and result oriented  Maintained positive relationship with peers and superiors. PROFESSIONAL SKILLS  Experience in web Programming  PHP Two month experience  Java Script Two month experience  HTML Two month experience  CSS  TOOLs& Technologies used Adobe Dreamweaver,vertrigo Server,  Database used MySql.  Familiar with C/C++,Java ,wordpress,ajax. Prominent Academic Projects Make some projects Like  Educational Website  In this site Students,Teachers & casual users can search their own required information Online.  The users can dynamically interact online with webpages.  Online Sale Purchase System(Semester project)  In this product user can sale his/her project and also can purchased required product He/She can beds the product and finally product will be sold the maximum beds amount. PHP used as front end and MYSQL database as backend. PERSONAL PROFILE  Father’s Name : Muhammad Rafiq  Nationality : Pakistani  Marital Status : Single  N.I.C No : 32402-8753394-5  Religion : Islam  Contact No : 0336-6309044  Domicile : Punjab REFERENCE Reference will be furnished on demand.
    PHP question Posted by: Muhammad Bilal at Date : 12-09-2011
  • What is array in php?
    PHP question Posted by: Ganesh Diwate at Date : 13-09-2011
  • what is cake PHP .
    PHP question Posted by: anand shukla at Date : 15-09-2011
  • what is cake PHP .
    PHP question Posted by: anand shukla at Date : 15-09-2011
  • why php?
    PHP question Posted by: pradeep at Date : 17-09-2011
  • php jobs in hyderabad
    PHP question Posted by: ramakanth at Date : 17-09-2011
  • Php E-Books
    PHP question Posted by: Vishu Soni at Date : 20-09-2011
  • why we are using php ?
    PHP question Posted by: karthik at Date : 20-09-2011
  • php interview auestions and answers?
    PHP question Posted by: chandan at Date : 22-09-2011
  • Hello I need latest php interview questions for 3 years experience
    PHP question Posted by: Kalyani at Date : 22-09-2011
  • required a job on php for 6months experienced
    PHP question Posted by: vani at Date : 23-09-2011
  • sir i want to learn php give me the best answer to learn php in short and better way...?what is the role of php in web designing?
    PHP question Posted by: suraj at Date : 28-09-2011
  • sir i want to learn php give me the best answer to learn php in short and better way...?what is the role of php in web designing?
    PHP question Posted by: suraj at Date : 28-09-2011
  • sir i want to learn php give me the best answer to learn php in short and better way...?what is the role of php in web designing?
    PHP question Posted by: suraj at Date : 28-09-2011
  • Hello, I need to download a book of php which has AJAX & JQuery examples.If you have then can u please send me the pdf or link to download that one.
    PHP question Posted by: Pardeep Sharma at Date : 29-09-2011
  • tell me the name of book which is good for php?
    PHP question Posted by: Naresh Kumar at Date : 02-10-2011
  • diff between php and cakephp
    PHP question Posted by: vijay at Date : 03-10-2011
  • diff between php and cakephp
    PHP question Posted by: vijay at Date : 03-10-2011
  • if any freshers php jobs.then send my id.thanks
    PHP question Posted by: achal mohan at Date : 03-10-2011
  • what is the growth as aphp devloper
    PHP question Posted by: bipin at Date : 04-10-2011
  • how to connect php to mysql
    PHP question Posted by: P.Revathi at Date : 06-10-2011
  • I am graduate with BA(Eco. hons). can i learn PHP and get job on PHP developing field.
    PHP question Posted by: Shankar kumar rajak at Date : 07-10-2011
  • B.E , Knowledge of PHP, html,
    PHP question Posted by: S.MANIKANDAN at Date : 07-10-2011
  • Do you have any requirement for PHP Developer
    PHP question Posted by: Samprikta basu at Date : 08-10-2011
  • php developer
    PHP question Posted by: Kailash Panigrahi at Date : 10-10-2011
  • why we use $ symbol before declare a variable in php
    PHP question Posted by: ravi kumar at Date : 11-10-2011
  • is php have data type?if yes,then why?
    PHP question Posted by: ravi kumar at Date : 11-10-2011
  • why we use $ symbol before declare a variable in php
    PHP question Posted by: ravi kumar at Date : 11-10-2011
  • why we use $ symbol before declare a variable in php
    PHP question Posted by: ravi kumar at Date : 11-10-2011
  • php fresher lavel job. if you have provide me a job then call or send me a mail in area of delhi & noida
    PHP question Posted by: sachin kumar at Date : 12-10-2011
  • php fresher lavel job. if you have provide me a job then call or send me a mail in area of delhi & noida
    PHP question Posted by: sachin kumar at Date : 12-10-2011
  • HOW MANY TYPES OF PHP TAGS ARE THERE?
    PHP question Posted by: Antara roy at Date : 13-10-2011
  • plz tell me wht main eroro in php ...
    PHP question Posted by: anuj at Date : 14-10-2011
  • what mean by php
    PHP question Posted by: venky at Date : 14-10-2011
  • what is differnce between php and html
    PHP question Posted by: ravindra at Date : 14-10-2011
  • Seeking for a job in php
    PHP question Posted by: M.Vijayalakshmi at Date : 15-10-2011
  • 1-procedure for database connectivity with mysql in php. 2-how we will aply validation in php with java script.
    PHP question Posted by: gyanu at Date : 17-10-2011
  • what use in php ?
    PHP question Posted by: shiny at Date : 19-10-2011
  • I have completed PHP mysql i steel needly job as a fresser. Thanks Sudhanshu P Sah 9971169892
    PHP question Posted by: Sudhanshu P Sah at Date : 19-10-2011
  • i just know to create login form and registration form with php with mysql... i want some advice what to do next in php and from where we get proper training..
    PHP question Posted by: abhijeet kumar at Date : 24-10-2011
  • hello,sir/mam i m neeti and pursuing M.C.A...bt i want job in php feild....
    PHP question Posted by: Neeti Maheshwari at Date : 24-10-2011
  • I am looking for a job in php. Please let me know if there is any chance..
    PHP question Posted by: Subair Ali at Date : 27-10-2011
  • I have 3 yr exp in php. i need a good job in india.
    PHP question Posted by: prabhat kumar at Date : 29-10-2011
  • I am a php software engineer. I want to change my current job. So can you give me some opportunities.
    PHP question Posted by: vilas Dhobale at Date : 30-10-2011
  • What is the latest version of PHP and MySql? How to hide variables in URL using PHP?
    PHP question Posted by: Prajakta Kolgaonkar at Date : 01-11-2011
  • Which is easy to use among asp.net and php...
    PHP question Posted by: Dipti ranjan Das at Date : 04-11-2011
  • Which is easy to use among asp.net and php...
    PHP question Posted by: Dipti ranjan Das at Date : 04-11-2011
  • Which is easy to use among asp.net and php...
    PHP question Posted by: Dipti ranjan Das at Date : 04-11-2011
  • i am looking jon in php mysql job as a fresher lavel . i am a mca passout student
    PHP question Posted by: sachin kumar at Date : 09-11-2011
  • I want interview question regarding php
    PHP question Posted by: amol at Date : 11-11-2011
  • plz send php&Mysql interview questions and answer both. thanks jeetendra
    PHP question Posted by: jeetendra at Date : 17-11-2011
  • i am a fresher php/mysql ,i need a job in php
    PHP question Posted by: sahshi at Date : 23-11-2011
  • Dear sir, i am 1 and half year experience in Drupal. Also knowledge in php, java script, css, html. i send a resume to you.
    PHP question Posted by: Padmanathan.J at Date : 24-11-2011
  • Hello... U Have send PHP Interview Question And Answer with document file.
    PHP question Posted by: gangeshvar at Date : 05-12-2011
  • how we can implement php codes in .net frame work?
    PHP question Posted by: ligi at Date : 07-12-2011
  • can we make flash videos in php
    PHP question Posted by: vysak at Date : 07-12-2011
  • i want php fresher walk-in. please send the details. thank u sir
    PHP question Posted by: prasanna kumar avvvaru at Date : 11-12-2011
  • how to save day,month,year in mysql from php page.
    PHP question Posted by: Ramesh kumar Raj at Date : 13-12-2011
  • How to create dropdown menu in php.
    PHP question Posted by: Saurabh Kumar Mishra at Date : 13-12-2011
  • for php jobs
    PHP question Posted by: anil kumar at Date : 14-12-2011
  • I am a MCA fresher looking for a Job in PHP
    PHP question Posted by: manoranjan das at Date : 14-12-2011
  • I need all php and core java interview details...
    PHP question Posted by: Abuthaheer.A at Date : 16-12-2011
  • PHP and MYSQL Question both basics and advanced topics
    PHP question Posted by: karthikeyan at Date : 23-12-2011
  • More interview Questions on php and mysql
    PHP question Posted by: karthikeyan at Date : 23-12-2011
  • I want to recieved PHP EBOOK.
    PHP question Posted by: Amrendra at Date : 27-12-2011
  • What is int datatype size in PHP5 AND PHP6
    PHP question Posted by: sachinpalve5@gmail.com at Date : 28-12-2011
  • I want php fresher job
    PHP question Posted by: jalpa savaliya at Date : 30-12-2011
  • Working as a PHP developer for 2yrs of experience.
    PHP question Posted by: Rajinikar at Date : 03-01-2012
  • Working as a PHP developer for 2yrs of experience.
    PHP question Posted by: Rajinikar at Date : 03-01-2012
  • all php quations
    PHP question Posted by: nikhil.naiknaware at Date : 04-01-2012
  • all php quations
    PHP question Posted by: nikhil.naiknaware at Date : 04-01-2012
  • all php quations
    PHP question Posted by: nikhil.naiknaware at Date : 04-01-2012
  • all php quations
    PHP question Posted by: nikhil.naiknaware at Date : 04-01-2012
  • what is the url masking in php?
    PHP question Posted by: Sourabh Gupta at Date : 09-01-2012
  • how to connect more than one database to php page
    PHP question Posted by: Sourabh Gupta at Date : 09-01-2012
  • What type of inheritance that PHP or other language supports ?
    PHP question Posted by: kinjal patel at Date : 10-01-2012
  • Php job
    PHP question Posted by: Tejpal H Navadiya at Date : 15-01-2012
  • How can we sent mail to more than one email id at a time in php?
    PHP question Posted by: Ghanshyam pandey at Date : 15-01-2012
  • Looking for php job in bangalore.
    PHP question Posted by: SNEHA.V.S at Date : 16-01-2012
  • job for php developer fresher
    PHP question Posted by: nitin verma at Date : 18-01-2012
  • i from Jaipur and i need job in php and joomla 1.5&& 1.7
    PHP question Posted by: Ramakishan at Date : 23-01-2012
  • I need php jobs for fresher and experence
    PHP question Posted by: vijay at Date : 25-01-2012
  • php pening
    PHP question Posted by: rajkumar pachauri at Date : 28-01-2012
  • i m fresher want job in php
    PHP question Posted by: RAHUL CHOUDHARY at Date : 31-01-2012
  • i have done MCA 3+ Exp. i know the languages VB, ASP, PHP and script language.in additional hardware & Networking..
    PHP question Posted by: Pandiyan V at Date : 01-02-2012
  • difference between php4 and php 5
    PHP question Posted by: johnny keshwani at Date : 01-02-2012
  • did you provide Training for PHP at chennai,what about the fee and duration of training?
    PHP question Posted by: himasekhar at Date : 01-02-2012
  • Sir please send php develope jobs on my email id Profile: Msc IT 2008/2 year exp in Teaching as a computer faculty in HIT but i want to change your profile and now i am search a job in php develop ment as a fresher.So sir please help me for this job Skill:Php,Mysql,Java script,Jquery,Html,css
    PHP question Posted by: dinesh kumar at Date : 02-02-2012
  • PHP DEVELOPER JOB
    PHP question Posted by: Bhupendra at Date : 02-02-2012
  • sir pls tell me how to create a download code in php.
    PHP question Posted by: narender at Date : 06-02-2012
  • i am php fresher and seeking for job
    PHP question Posted by: swathi at Date : 07-02-2012
  • I have done MCA. I have more than 3 years of experience in PHP, MySql, JavaScript and AJAX.
    PHP question Posted by: Ramsharan Sahu at Date : 09-02-2012
  • i am php fresher, I am a searching a job in mohali or chandigarh
    PHP question Posted by: jatinder singh at Date : 09-02-2012
  • Looking for PHP job in Mumbai.... having 4 months of working experience. Do reply me soon.
    PHP question Posted by: Rohan Patil at Date : 09-02-2012
  • lokking for job in php(html,xml,css,dreamviewer,wamp) and i hanve got 6 months experience as a php developer in igluesoft Technologies
    PHP question Posted by: shashank at Date : 13-02-2012
  • frisher job php
    PHP question Posted by: naresh at Date : 15-02-2012
  • i am mca fresher an i am working php/mysql.
    PHP question Posted by: Arti gupta at Date : 16-02-2012
  • PHP question Posted by: muthusamy at Date : 18-02-2012
  • hi this karthik i compllted mca in 2011 passout and php couse complte
    PHP question Posted by: K.V.S KARTHIK at Date : 20-02-2012
  • Need all Interview answer and question of PHP
    PHP question Posted by: sourav mane at Date : 21-02-2012
  • what is structure of php
    PHP question Posted by: amol subhash deole at Date : 21-02-2012
  • This is prakash. I have 1+ years of experience in Web development and I have knowledge of PHP, HTML, CSS, Javascript, Jquery.
    PHP question Posted by: Prakash Reddy Nalabolu at Date : 27-02-2012
  • PHP is more important than JSP or .NET???
    PHP question Posted by: vikas patel at Date : 28-02-2012
  • hi, my name is Nazneen and i am searching for a php fresher job.I have completed my bca in 2011.Please tell me if u knw any opening in navi mumbai
    PHP question Posted by: Nazneen at Date : 29-02-2012
  • i want a job for php developer as fresher
    PHP question Posted by: nitin verma at Date : 02-03-2012
  • i done my B.E.in year 2010.i am not experienced candidate,so can i apply for the php jobs or not?
    PHP question Posted by: ankita jha at Date : 10-03-2012
  • php
    PHP question Posted by: mahalakshmi at Date : 11-03-2012
  • 1.print and echo function is why?...or not is why? 2.for,while,do-while loop what is different?. 3.why ? are not use data type in php.
    PHP question Posted by: mukesh tiwari at Date : 12-03-2012
  • 1.print and echo function is why?...or not is why? 2.for,while,do-while loop what is different?. 3.why ? are not use data type in php.
    PHP question Posted by: mukesh tiwari at Date : 12-03-2012
  • 1.print and echo function is why?...or not is why? 2.for,while,do-while loop what is different?. 3.why ? are not use data type in php.
    PHP question Posted by: mukesh tiwari at Date : 12-03-2012
  • hi sir your question is very important for me, if you have any other question related to php so plz dend on my mail ....thanking you
    PHP question Posted by: Husain Ahmed at Date : 14-03-2012
  • what is use to php in simply language
    PHP question Posted by: akash at Date : 15-03-2012
  • how can do download php interview questions for freshers
    PHP question Posted by: datta dhale at Date : 19-03-2012
  • Hi I am looking jobs in PHP developer in Hyderabad.So if there is opening is going on please inform me
    PHP question Posted by: SHAHID ALAM at Date : 26-03-2012
  • Can I have top interview questions from PHP, JOOMLA, DRUPAL, WORDPRESS and Jquery for 1.5yrs experienced.
    PHP question Posted by: pavan at Date : 29-03-2012
  • I want job in php
    PHP question Posted by: uday at Date : 29-03-2012
  • how to install the php . whether its a software or what it is
    PHP question Posted by: hariharan.s at Date : 29-03-2012
  • I want to make a good programer with base language php
    PHP question Posted by: pankaj mishra at Date : 30-03-2012
  • job for php freshers
    PHP question Posted by: vimal tripathi at Date : 31-03-2012
  • job in web development in php
    PHP question Posted by: sumit kohli at Date : 31-03-2012
  • PHP jobs
    PHP question Posted by: suresh at Date : 31-03-2012
  • I completed M.sc[IT].Now I Want looking php jobs..pls inform me
    PHP question Posted by: N.RAGU at Date : 01-04-2012
  • I am Rohit Kumar. My qualification is MCA. I want to work in Php freshers jobs. Please give me suggesion and job.
    PHP question Posted by: Rohit Kumar at Date : 03-04-2012
  • I would like to get place in IT so that i hope your consultency will help me to get place in IT as PHP Developer. Thanking you Sir/Madam.
    PHP question Posted by: Natarajan.S at Date : 04-04-2012
  • php interview question
    PHP question Posted by: nilesh at Date : 05-04-2012
  • i have 1 year Experience in IT administration and with 9 to 10 month Experience on php program if you have any job for me then please contact on my mobile number- thanks raman ghode (software engineer)
    PHP question Posted by: raman ghode at Date : 05-04-2012
  • i want job on php.
    PHP question Posted by: Manendra singh at Date : 10-04-2012
  • I am sarfaraz alam B.tech(IT) from WBUT in 2011,looking for a job in software field especially in php. currently residing in delhi,plz offer some oppertunities
    PHP question Posted by: sarfaraz alam at Date : 16-04-2012
  • I am sarfaraz alam B.tech(IT) from WBUT in 2011,looking for a job in software field especially in php. currently residing in delhi,plz offer some oppertunities
    PHP question Posted by: sarfaraz alam at Date : 16-04-2012
  • php
    PHP question Posted by: navdeep at Date : 17-04-2012
  • plz send me the compeny list for php job vacansies.
    PHP question Posted by: pankaj tiwari at Date : 19-04-2012
  • job in PHP and DBMS
    PHP question Posted by: Rekha Singh at Date : 19-04-2012
  • plz inform me about php walkins
    PHP question Posted by: Rahul Ranjan at Date : 19-04-2012
  • Search More interview questions and answers on PHP
    PHP question Posted by: sourabh khotiwale at Date : 21-04-2012
  • now am looking for PHP jobs...completed MCA...
    PHP question Posted by: Robert jeyaseelan at Date : 22-04-2012
  • Hi, I am fresher in PHP/MYSql, but i have 3 years(+) experience in web designing, but i want to see my self as a php developer, so please send some company details, who is working on php.
    PHP question Posted by: Devashish Mishra at Date : 25-04-2012
  • i want to create client server program with php .is it possible like Lightstreamer stock market demo.can you advise.
    PHP question Posted by: sree at Date : 09-05-2012
  • i have 6 month experience in php.i am searching a jobs in php so please suggest me.
    PHP question Posted by: jawed anwar at Date : 09-05-2012
  • Any job for php plz call me.......
    PHP question Posted by: vimal tripathi at Date : 17-05-2012
  • intrested on php
    PHP question Posted by: janardhana at Date : 24-05-2012
  • most example of php program.please give me one web side name....
    PHP question Posted by: chate sandeep at Date : 24-05-2012
  • my name is yogesh gupta . I have done Mca .looking for a job in php .
    PHP question Posted by: yogesh gupta at Date : 25-05-2012
  • Hello sir Myself Kushal Gupta. I have done 6 month industrial training in PHP. Now i want to go in Developing line. So if you have any requirement in PHP, reply me. Note: I have also 2 year experience in Link Building and SEO with regards kushal gupta mobile :09780330699
    PHP question Posted by: kushal gupta at Date : 27-05-2012
  • I am looking for php job
    PHP question Posted by: mangesh kailuke at Date : 28-05-2012
  • i search job for php,mysql with fresher and experience,
    PHP question Posted by: baru rajeshkumar at Date : 29-05-2012
  • I have done my MCA frm Pune University in 2012 and done internship in a software company. There I worked on PHP. Now I am searching other job in PHP.
    PHP question Posted by: Neelam Ghavate at Date : 13-06-2012
  • php vaccancies
    PHP question Posted by: sreeja at Date : 13-06-2012
  • I have done my MCA frm Pune University in 2012 and done internship in a software company. There I worked on PHP. Now I am searching other job in PHP.
    PHP question Posted by: Neelam Ghavate at Date : 13-06-2012
  • I am pure beginner of php. I want to join as a developer so please give the Q&A free
    PHP question Posted by: MD SHAMIM at Date : 15-06-2012
  • please tell me if there is any job for php fresher in Chandigarh
    PHP question Posted by: Naveen at Date : 16-06-2012
  • B.TECH PASSOUT IN 2011 FROM IT BRANCH. AREA OF SPECIALIZATION PHP, XML,HTMA,CSS
    PHP question Posted by: mrinal kaushik at Date : 26-06-2012
  • job in php fresher
    PHP question Posted by: Rimant Chouhan at Date : 27-06-2012
  • Please send to me more php mysql,experienced questions and answers..
    PHP question Posted by: Naveen at Date : 30-06-2012
  • PHP core, ajax,joomla,cake,smarty
    PHP question Posted by: shabib ahmad at Date : 02-07-2012
  • php,mysql,html,css,javascript,jquery,
    PHP question Posted by: nagarjuna at Date : 04-07-2012
  • Hi, I am fresher, course done in php.
    PHP question Posted by: Rajkamal.B at Date : 04-07-2012
  • i am fresher and i want all Q & A about php and MYSQL..so pls send me as fast as possible..
    PHP question Posted by: Sandip Virani at Date : 06-07-2012
  • i have completed my engineering IT in 2011 and I have done php course and searching a job.if you know any job of PHP then inform me as early as possible..
    PHP question Posted by: Prakash Ramkishan Kendre at Date : 08-07-2012
  • Core php,joomla
    PHP question Posted by: farhad at Date : 13-07-2012
  • php&mysql
    PHP question Posted by: raj at Date : 16-07-2012
  • hi i have not given my number. i want to know about php course in pune. i want to learn oops and freamwork. so what would be the cost. i am working as php developer. so only Saturday and Sunday its possible. thanks and regards kiran
    PHP question Posted by: kiran madke at Date : 17-07-2012
  • php one year Expierence jobs
    PHP question Posted by: Brahmam at Date : 18-07-2012
  • Looking for a Job in PHP with MYSQl. Recently working in same domain with a US based MNC called as EFI(Electronic for imagine)
    PHP question Posted by: Jonus Joseeph at Date : 19-07-2012
  • i am experienced in 1 year php technology. and other knowledge of html ,Jquery,CSS,dreamweaver and wordpress.
    PHP question Posted by: Kaptan kumar at Date : 21-07-2012
  • Is php is linked with java or .Net programming languages?
    PHP question Posted by: raju at Date : 21-07-2012
  • find the php jobs for freshers
    PHP question Posted by: Mita Bhowmick at Date : 21-07-2012
  • php(5 months experience)
    PHP question Posted by: remya r at Date : 26-03-2013
  • Respected sir, i m sudha from bangalore. i m searching home based jobs related development(html,css,php,javascript).i have 1+ year exp in development.
    PHP question Posted by: sudhasaravanan at Date : 20-06-2013
  • Hi sir /mam I am looking a job in PHP development filed, so i want to join your organization to enhance my skills. Thanks and Regards Tarun Raturi
    PHP question Posted by: Tarun Raturi at Date : 09-11-2013
  • i want a job in your company i hav done MCA from university of pune... and i hav 6 monts industry experience in pune i know PHp advance codeigniter,ajax,jquery,c#,asp.net,ado.net,advance java jsp,servlet.
    PHP question Posted by: sangeeta choudhary at Date : 20-11-2013
  • I NEED JOB NEED JOB Curriculum Vitae Mr. Aman Datta Village Rajgarh Tesh Dehra Gopipur E- Mail : Amandatta107@yahoo.com Distt Kangra Mob : 9418238932 9780287084 Himachal Pradesh Pin :177101 Career Objective: To gain a dynamic and challenging role in the area of computer software and hardware that will offer be the best opportunity for further development of my abilities, skills and knowledge in an established firm with long term carrier growth possibilities. Strength: • Commitment towards work. • Positive attitude. • Determination, dedication and discipline. • Willing to learn and adapt to new opportunities and challenges. • Ability to work in a team. Educational Qualification: Examination Institute/Board Year %AGE M.C.A GTE Institute CHD / P.T.U 2011 67.04% B.C.A Apee jay institute of management and Technology Jalandhar / PTU 2009 60.35% + 2 (P C M) H.P.B.S.E Dharamshala (H. P.) 2005 50.8% Technical skills: • Languages : core php and advance php. Ajax, mvc, web design, world press Training: • six month training in php • carworld project in php Hobbies • Curious to learn different technologies. • Listening to music. Personal Profile • Father’s name : Mr. N.K Dutta • Date of Birth : 26 sept,1986 • Nationality : Indian • Marital Status : Single • Languages known : English, Hindi, Punjabi. • Permanent Address : Village Rajgarh,Teh. & P.O Dehra. Distt. kangraH.P • Personality : Hard Working and Quick learner Declaration I hereby declare that all the information mentioned in this CV is correct in the best of my knowledge and belief. Date : 15/ August /2013 Place : Chandigarh (Mr Aman)
    PHP question Posted by: AMAN DATTA at Date : 07-12-2013
  • Hi Team, I'm Looking for PHP Based Training come job Placement. Currently I'm working on JAVA. is their anything you can assist would be helpfu.
    PHP question Posted by: Yogesh Yadav at Date : 23-01-2014
  • I am php developer having experiance with 2+years please send me more (php+mysql+oops+codeigniter+mvc) interview question with answere
    PHP question Posted by: Aashou malik at Date : 14-04-2014
  • hello, i want to take training in php.. both core and advance php... and m from chandigarh....
    PHP question Posted by: sahil at Date : 25-06-2014
  • PHP Tranering
    PHP question Posted by: vivek kumar at Date : 11-09-2014
  • I want information regarding HTML,PHP ASP.NET. If you provide training plus job please reply.
    PHP question Posted by: Maitreyi M Gavankar at Date : 29-12-2014
  • Please send the all PHP/Drupal interview questions with answers
    PHP question Posted by: Prashant at Date : 31-03-2016
  • hi, please send me opencart php interview questions and answer
    PHP question Posted by: uma at Date : 28-09-2016
  • Need scenario based php
    PHP question Posted by: Gowri at Date : 06-03-2017
  • Want to get all the questions on both PHP and unit test as well
    PHP question Posted by: Istiaque Ahmed at Date : 27-11-2017
  • All embeded system c c++ java PHP dot net interview questions and answers programs data of theory plz send this my mail id on daily updates
    PHP question Posted by: at Date : 04-10-2018

Ask your interview questions on PHP


Write Your comment or Questions if you want the answers on PHP from PHP Experts

Name* :
Email Id* :
Question
Or
Comment* :
 





Disclimer: PCDS.CO.IN not responsible for any content, information, data or any feature of website. If you are using this website then its your own responsibility to understand the content of the website

--------- Tutorials ---