Tag Archives: php interview question
Php interview Questions – part II
Posted on 03. Apr, 2009 by admin.
1. What is the differences between GET and POST methods in form submitting?
- 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 client side, the difference [...]
Continue Reading
Interview question — Part 5
Posted on 03. Apr, 2009 by admin.
1. What is the purpose of the following files having extensions 1) frm 2) MYD 3) MYI. What these files contains?
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 [...]
