hai how r u?
you do
read: moving data from file to memory write: moving data from memory to file
If you know FPDF or simlar library which helps to make a PDF file, using PHP,you will be able to write to a PDF file out of data read from mysql tables.
Write your data to a data file.
I have the same problem............ I want to read and write file but using Xmodem..... Please help me out as soon as possible
To delete all the existing data in a file, simply open it in write mode. If you open the file in append mode, you need to overwrite the existing data to delete part or all of that data.
Opening a file...for writing!
Your Private Data is recoverable using a File Recovery Program...such as Pixo_Rescue.
Yes. The FORTRAN write command output's data to a file.
you can use inputstream for reading the file java.io.fileinputstream and write the file using outputstream..
An alternative to using a database to store data is to use what are known as flat files. These are basically text files that are stored on your server that you can use to store your data, change, manipulate and generally use how you want. Although I'd recommend you use a database, you can use PHP's file processing system. There are 3 steps to writing data to a file: # Open the file (create if doesn't already exist) # Write data to the file # Close the file There are also 3 steps to reading data in a file: # Open the file (if cannot be opened, generate an errror) # Read the data # Close the file
When you open a file in write mode, eg. fp=fopen("filename.txt","w"); the content of the file is deleted.