Md. Ruhul Amin (Tuhin) : Software Engineermaos Japan Bangladesh LTD
Md. Ruhul Amin (Tuhin) : Software Engineermaos Japan Bangladesh LTD
Md. Ruhul Amin (Tuhin) : Software Engineermaos Japan Bangladesh LTD
Ruhul Amin(Tuhin)
Software EngineerMAOS Japan Bangladesh Ltd.
Website: http://maosjb.comEmail:[email protected] omMobile: 0176341107
POST methods in form submitting, givethe case where we can use get and we can use post methods? Answer:On the server side, the main difference between GET and POST is where thesubmitted 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 willbe displayed in the browser's address field. Data submitted by the POST methodwill 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. 2. Who is the father of php and explain the changes in php versions? Answer:Rasmus Lerdorf for version changes go tohttp://php.net/ Marco Tabini is the founder and publisher of php|architect. 3. How can we submit from without a submit button? Answer:We can use a simple JavaScript code linked to an event trigger of any form field.In the JavaScript code, we can call the document.form.submit() function to submitthe form. For example: 4. How many ways we can retrieve the date in result set of mysql Using php? Answer:As individual objects so single record or as a set or arrays.
5. What is the difference between mysql_fetch_object and mysql_fetch_array? Answer:MySQL fetch object will collect first single matching record wheremysql_fetch_array will collect all matching records from the table in an array. 6. What is the difference between $message and $$message? Answer:They are both variables. But $message is a variable with a fixed name. $$message isa variable who's name is stored in $message. For example, if $message contains"var", $$message is the same as $var.