Ok i have a file that looks like this:
exten => 1,1,(Dial:3001)
exten => 1,2,(Fail Vociemail)
Now how using PHP can I edit the value "exten => 1,2,(Fail Vociemail)".
I want users to be able to enable voicemail (add the line exten => 1,2,(Fail Vociemail) and disable it (remove the line completly)
Any ideas?
So basicaly i need to be able to find a line in a PHP file and delete it and/or add it.
stuart