Can we use include ("xyz.PHP") two times in a PHP page "index.PHP"?
Correct Answer
Yes we can use include("xyzphp") more than one time in any page but it create a prob when xyzphp 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
Correct Answer: htaccess is a configuration file running on Apache serverThese htaccess file used to change the functionality and features of apache web server eg htaccess file used for url rewrite htaccess file used to make the site password protected htaccess file can restrict some ip addresses ,so that on restricted ip adresses site will not open
Correct Answer: htmlspecialchars only takes care of , single quote ?, double quote " and ampersand htmlentities translates all occurrences of character sequences that have different meaning in HTML
5. For printing out strings, there are echo, print and printf. Explain the differences.
Correct Answer: - echo is the most primitive of them, and just outputs the contents following the construct to the screen print is also a construct (so parentheses are optional when calling it), but it returns TRUE on successful output and FALSE if it was unable to print out the string However, you can pass multiple parameters to echo, like: and it will output the string "Welcome to TechInterviews!" print does not take multiple parameters It is also generally argued that echo is faster, but usually the speed advantage is negligible, and might not be there for future versions of PHP printf is a function, not a construct, and allows such advantages as formatted output, but it?s the slowest way to print out data out of echo, print and printf
6. How can we get the browser properties using PHP?
Correct Answer: 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
10. What are the differences between GET and POST methods in form submitting?
Correct Answer: On the server side, the main difference between GET and POST is where the submitted is stored The $_GET array stores data submitted by the GET method The $_POST array stores data submitted by the POST method On the browser side, the difference is that data submitted by the GET method will be displayed in the browser?s address field Data submitted by the POST method will not be displayed anywhere on the browser GET method is mostly used for submitting a small amount and less sensitive data POST method is mostly used for submitting a large amount or sensitive data