Advertisements
Advertisements
प्रश्न
Explain the process File handling.
संक्षेप में उत्तर
उत्तर
- 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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Trace the output of following html code.
‹!DOCTYPE html›
‹html›
‹head›
‹title›Heading tags‹/title›
‹/head›
‹body›
‹h1 align=left›Information Technology‹/h1›
‹hr›
‹h2 align=center›XI Standard‹/h2›
‹h3 align=right›Division‹/h3›
‹/body›
‹/html›
Which attribute of form tag helps in client-side validation?
The no. of parameters used by fclose() function.
PHP is a ______ programming language.
Identify which is not a server side application language.
Define HTML form controls.
Differentiate Get and Post Method.
Write short notes on File handling.
Explain the concept of Submit and Reset buttons in HTML forms.
Customer Analytics firm needs to design a survey form as shown below:
Write suitable HTML code to design it.