Hi i want to know if there is a way to edit information in a form then when the form is submitted the information is then dited in a file. Like if i madea form for a config file it would have all the config information in a form then when submitted it will be edited in config.php is this possible.
It would be possible, but it would be very difficult. I suggest reading the config file into a text field, and allow the user to edit it, and the submit the form, and have the script save the config file with the additions by the user.
If all the configs are in the form, you can just overwrite all the existing values and insert the values from the form as if you were writing to a new config file.