PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I require help for php listings as i am unable to append/delete files on apache server under linux. I tried unlink for deletion and fwrite "w+" for append. Will u be able to help me
Hey,
please provide a little more information. are you getting an error? what error? do you have permission to madofy the file(s) your're trying to work with?
One thing to note is that 'a' (or 'a+', for read-append) is the mode used to append files--not 'w+', which opens for read-write, but first erases all the data.