If I want to write to a text file where it already contains values of ->
a=1
b=2
c=3
d=4
e=5
and by inputting data into 5 different forms
Example --- Wrote 6 on Form name "a", 7 on Form name "b" and so on...where their old Values were 1, 2 and so on respectively..
It will write over the old values in the text file with ->>
a=6
b=7
c=8
d=9
e=10
How should I do it??
Is it by using the foreach as well as fwrite functions?
Can anybody help me out, coz I kind of new to PHP and still
confuse on some of the concepts...
Thanx!!!!