Advertisements
Advertisements
Question
Explain the process File handling.
Answer in Brief
Solution
- File handling is an important part of any web ap¬plication. You often need to open and process a file for different tasks.
- File handling is needed for any application. For some tasks to be done file needs to be processed.
- File handling in RHP is similar as file handling is done by using any programming language like C.
- Five major operations can be performed on file are:
- Creation of a new file.
- Opening an existing file.
- Reading data from a file.
- Writing data in a file.
- Closing a file.
- Steps for Processing a Fite
- Declare a file pointer variable.
- Open a file using open() function.
- Process the file using the suitable function.
- Close the file using fclose() function.
shaalaa.com
HTML Forms
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
When you use the $_GET variable to collect data, the data is visible to ______.
In which input field only one option Can be selected?
In HTML form <input type=”text”> is used to ______.
How PHP files can be accessed?
Identify which is not a server side application language.
What is Form Validation in PHP?
What is a HTML form?
Write any two rules for input HTML.
Differentiate check box and Radio button.
Explain the concept of Submit and Reset buttons in HTML forms.