This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

What is PHP?

What is Php ?


PHP is a Server Side Scripting Language. PHP is used to develop Dynamic Web Pages. 
PHP is a Scripting language used to control Web Applications and Web Page in Server Side

The most popular scripting language used on PHP Web is Using PHP, you can create a
 User Page and Login Page. You can also create a forum using PHP.

PHP course



PHP Advantages : Let us learn the php advantages with PHP training institute.

  1. Open source - Open source - PHP is uninhibitedly accessible for utilize. The people
     group of PHP Open Source Developers gives specialized help and is consistently 
    enhancing Core PHP Functionalities.

  1. Cross-Platform - Provides High Consistency such as PHP Leading Operating Systems
     and Web Servers so that it can easily be deployed in many different platforms. 
    PHP Scripts can run in operating systems such as Linux, Windows, Solaris, OpenBSD,
     Mac OSX etc. and can also provide support for all major Web servers like Apache, IIS, 
    iPlanet etc.

  1. Power - Many Web Tasks can now easily be done using PHP. Presently we can create 
    from little sites with extensive Business and Organizational Websites Informative Forums,
     Chatting Platforms, CRM Solutions, E-Commerce Shopping Carts, Community Websites,
     e-Business, Shopping Carts and Huge

  1. User Friendly - Easy to use PHP C gives more adaptability than C, C and ASP and enables
     increment to movement on the site

  1. Quick - PHP has been designed to work well with Web and thus things like manufacturing  
    GET and POST and working with HTML and URLs are Manufactured in PHP Language.
PHP Disadvantages

  1. PHP is not suitable for large applications It is difficult to maintain it because it is not very 
    modular.

  1. PHP Framework has a Bad Error Handling Method. This is not the proper solution for PHP
     Developers, so it is a problem with the PHP Developer.

Introduction of Php : PHP (Hypertext Preprocessor) is an open-source HTML-embedded
 server-side scripting language that is used to make web applications dynamic and interactive and 
is also used as a normal programming language.

Popular features of PHP

  1. PHP is the easiest to use for any newcomer because advanced features and professional 
    programming have also been added to it.

  1. PHP is easy to learn and runs efficiently on the server side too.

  1. PHP works on many operating systems like Linux, Windows, Mac OS X and many others.


  1. PHP supports many databases such as MySQL, MS-SQL, Oracle, Sybase, PostgreSQL.

  1. PHP website takes very little time to create

PHP Hello World Example :

<! DOCTYPE html>
<html>
  <head
     <title> PHP Hello World Example </ title>
  </ head>
  <body>
  <? php
     echo "Hello World ...!";
     echo "This is basic example";
  ?>
  </ body>
</ html>

If you are in Chandigarh and looking best PHP Training than Join Cbitss Technologies
 . CBitss is one of the best training institute in Chandigarh.
PHP Variables

There is a Holder for a Variable Data Type. In this way, contingent upon its write, one can hold
 the assets of the Variable Numbers, Strings, Booleans, Objects or it can NULL.

All the variables in PHP start with a sign "$" and in this, value can be assigned using "=" operator.
Dollar Sign isn't actually a piece of the Variable's name however it is important to perceive such
 factors as the main character of PHP Parser.

One more important thing in PHP is that all the statements have a semicolon ";" Should end with
 the same. In PHP, we don't need to determine the sort of factor as it takes the Data write from
 Assigned Value.

To declare a variable, you must include it in your script. You can Declare a Variable and assign 
it to the same Statement with a value.
Rules for Variable Declaration

   Variable starts with $ sign and with Variable Name

   Variable starts with the Letter or Underscore sign followed by Underscore Number or Characters.

Variable Numbers do not start with

Factors can be characterized utilizing alphanumeric characters and just by Underscores.
 There is nothing with the exception of Scope just Rules when the names of two better places 
have a similar significance.

PHP Variable Scope

There is nothing with the exception of Scope just Rules when the names of two better places 
have a similar importance. There are three Variable Scope to characterize Places in PHP.

  1.    Local Variable Scope

  1.    Global Variable Scope
  1.    Static Variable Scope

Local Variable Scope

Local Variable is defined and accessed within the Function. This is not accessible beyond the
 Function.


Global Variable Scope

The Global Variable is defined beyond the Function. You can use Global Variable anywhere in 
the script outside the Function. But the Global Variable can also be accessed inside the 
Function before using the Keyword Global before Declaring the Variable.

Static Variable Scope

Generally, when a Function is completed / executed, all the variables are deleted. Although 
sometimes we have a Local Variables.

PHP Training in chandigarh - TOP 10 Q/ans

 PHP Training in Chandigarh - TOP 10 Q/ans


1 .  What is PHP?    

PHP introduction :-

PHP is a server script language that is commonly used for web applications. PHP
 has many frames and cms to create websites. Indeed, even a non-specialized 
individual can make locales that utilization CMS.WordPress, osCommerce are 
popular CMS of php. It is likewise a question situated programming dialect, for
 example, Java, C-sharp, and so forth. It is very easy to learn.

2.  What is the use of "echo" in php?    
Used to print data on the web page, example: <? Php echo 'Car insurance'; ?>, 
The following code print the text on the web page

3.  How to include a file to a php page?    
We can include a file with the "include ()" or "require ()" function with the path of the file
 as a parameter.

4.  What's the difference between include and require?    
If the file is not found by requiring (), it will cause a fatal error and will stop the execution
 of the script. In the event that the document is not found to be included (), a notice will 
be issued, however the execution will continue.
PHP training in chandigarh

5.  require_once(), require(), include().What is difference between them?    
Required () the integration and checking of a specific file, while
 requirement_once () is only performed if not already included (before the same page).
 Therefore, it is recommended to require_once () to use when you want to include a
 file where you have many functions, for example. In this way, make sure you do 
not include the file multiple times and you will not get the "redeclared function" error.

6. Differences between GET and POST methods ?    
We can send 1024 bytes utilizing the GET technique, yet the POST strategy can exchange 
a lot of information and POST is the certain strategy for the GET strategy.

7. How to declare an array in php?    
Eg : var $arr = array('apple', 'grape', 'lemon');

8.   What is the use of 'print' in php?    
This isn't really a genuine capacity, It is a dialect build. So you can use without enclosures 
with its contention list.
Example print('PHP Interview questions');
print 'Job Interview ');    

9 .  What is use of in_array() function in php ?    
in_array used to checks if a value exists in an array

10.  What is use of count() function in php ?    
count() is used to count all elements in an array, or something in an object

11.  What's the difference between include and require?    
It's how they handle failures. In the event that the document isn't found by require(), it will 
cause a lethal blunder and end the execution of the content. If the file is not found by
 include(), a warning will be issued, but execution will continue.

12.  What is the difference between Session and Cookie?    
The primary distinction amongst sessions and treats is that sessions are put away on 
the server, and treats are put away on client PCs in the content document organize. 
Cookies can not handle multiple variables while the session can handle multiple variables .. 
We can set the expiration for a cookie, The session will remain active as long as the 
browser is open. Users do not have access to the data you store in Session, Because 
it is stored on the server.Session is mainly used for login / logout purposes while cookies
 used for monitoring user activity

12. How to set cookies in PHP?    
Setcookie("sample", "ram", time()+3600);

13.  How to Retrieve a Cookie Value?    
eg : echo $_COOKIE["user"];

14. How to create a session? How to set a value in session ? How to Remove data from 
a session?    
Create session : session_start();
Set value into session : $_SESSION['USER_ID']=1;
Remove data from a session : unset($_SESSION['USER_ID'];    

15.  what types of loops exist in php?    
for,while,do while and foreach (NB: You should learn its usage)

English Speaking course| English Pro

English Speaking course in Chandigarh


English Speaking course in chandigarh

Language acts as a medium which lets you express your thoughts as well as views in a proper
 manner. The basic objective of learning a language is to depict the literature of that particular
 language and make use of it. In the present lifestyle, English has taken over all the other
 languages and speaking English Fluently has become a pride. Given that English is one of
 the most spoken and used languages across the globe, developing skills to understand this
 language can escalate your professional growth and personal outlook as well.  
 English speaking enables you to get that skill which supports you
 to reach the success and high standards in the society and gain the ability to express your
 ideas in a precise, effective, and brilliant way.



If you are a student and you lag a communication skill or feel difficulty in understanding the
 English Language, then it is must for you to take up English
to develop your communication skills in the English Language. On a similar note, professional
 growth becomes impossible if you have poor communication skills. As a matter of fact, a 
highly talented person with low communication skill will remain in the same position for a longer
 period of time whereas the one who knows to communicate better or have a good communication
 skill will reach greater heights in a very short span of time. This is because the IT sectors or 
any of the companies expect their candidates to have a very good communication skills.

English speaking course in Chandigarh - English pro


It comprises of specially designed levels of modules which cater to diverse needs of people.
 You can register in our courses for strengthening your communication skills and achieve new 
heights in your respective field of profession or study. We have three different levels in
 English speaking course in chandigarh , Level 1- Beginner, Level 2- Intermediate,
 Level 3- Advanced and IELTS coaching  so that you can learn the language as
 per your current ability and understanding. Thus, irrespective of whether you are a job seeker
 or student, we have a course for you.

IELTS Speaking Topics- Part 1 - ielts coaching in chanadigarh

IELTS Speaking Topics- Part 1


On this page you will find general IELTS-speaking topics and sample answers.
My plan is to add this about once a month, so come back regularly for more general IELTS
speaking topics and sample answers.
Remember that these are personal questions and therefore you must give personal answers.
You may not remember answers, and if the examiner thinks you have done so, you will lose 
many points.


ielts coaching in chandigarh

IELTS Speaking Topic # 1- Work

1 Do you work or study?
I graduated a couple of years back and I am presently in all day business.

2  What is your job?
I am as of now an English instructor working for the British Council in Ho Chi Minh City.

3  Why did you choose that job?
I was a lawyer before and found it really stressful and never had free time, so after I quit that job,
 I thought that teaching would be the opposite of being a lawyer, you do not know so stressful and  
more free time.


  1. Are there many English teachers in Ho Chi Minh City?
Oh yeah! There is a great demand for English as a second language here and it is also a
 relatively cheap place to live in comparison with many other major cities in Asia.

  1. Do you enjoy your work?
Mostly. It is very rewarding to be able to help people every day and the students here are
 very hard working and fun to teach, but sometimes you have lessons that go well and the
 money can always be better.

  1. Can you agree with your colleagues?
Yes fine. I do not really see work as part of my social life, so I do not socialize with them, 
so I think I can be nicer, but it's just my nature to be a bit colder with colleagues. I think it
is more professional to be like that.

  1. How was your first day at work?
There were many teachers who started at the same time as me, 10 I think, so we all had 
a big introduction day. The more experienced teachers held workshops with us to familiarize
 us with the different systems they had and then we went for a team dinner in the evening.

  1. What responsibilities do you have at work?
All teachers who bear the main responsibility are to plan good lessons and then learn them
 as well as possible. In addition, we have several administrators. perform tasks such as 
mark homework, fill in attendance lists and write reports.

  1. Do you want to change jobs in the future?
Yes, as I said before, I like to work alone, so I would like to be my own boss. I am currently
 working on developing my own website, so if I succeed, I will leave teaching and work
 full-time. This also gives me more time to work on other projects.

  1. What does your typical day look like at work?
Normally I have 2 or 3 lessons in the evening and start the day by carrying out all the
 planning at home. This normally takes an hour or two, depending on the lessons. 
After that I take the rest of the day to spend with my family, before I work around 3 to 
print my materials and then I teach all evening.

  1. What would you change about your job?
As with most English teachers, we need to teach about what is in the curriculum and 
this may mean that you learn some things that are rather boring or not very useful to 
your students, so I would like more freedom to teach outside the syllabus.