Internee PHP Developer

  Home  Web Development  Internee PHP Developer


“Internee PHP Developer based Frequently Asked Questions in various Internee PHP Developer job interviews by interviewer. These professional questions are here to ensures that you offer a perfect answers posed to you. So get preparation for your new job hunting”



75 Internee PHP Developer Questions And Answers

66⟩ What is mysql_error()?

The mysql_error() message will tell us what was wrong with our query, similar to the message we would receive at the MySQL console.

 123 views

68⟩ Tell us what are the differences between Get and post methods?

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

 131 views

69⟩ Tell me what are the two main string operators?

The first is the concatenation operator (‘.’), which returns the concatenation of its right and left arguments. The second is (‘.=’), which appends the argument on the right to the argument on the left.

 135 views

72⟩ Explain me image work which library?

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.

 130 views