Ok.
I have been studying out of a book called PHP Fast & Easy Web Development. So need less to say, I am learning php.
I have a qustion.
here is my situation:
I have a file that contains some global variables. I want to have a web based form be able to change them variables if needed. How could I go about this?
I was thinking something like..
<?php
//Absolute path to the web site
$path_absolute = "$path_absolute_text";
?>
And then in the form have the input field be path_absolute_text but I keep thinking and this wont work. My brain seems to stop there without an answer.
can someone please tell me how I could accomplish writing to this file to control what the variable is actually holding?
If anyone can help I am grateful..
Thanks
Joseph Lukic