Hello Friends, once again I need your assistance.
I have a script and it contains a number of variables, say for eg.
$apple = 3;
$triangle = 7;
$london = 12;
is there a function in php that can allow me to physically change the value eg, on a new php script I have a form or something that will allow me to change $apple to say 456 and then when I open the variable php the value has been changed in the script its self, so the new script reads
$apple = 456;
$triangle = 7;
$london = 12;
Thanks in advance for you help,
Sheephat