That is the question at hand, i am wanting the admin page to modify the variables on in the config.php page. Also by default the admin displays the variables that are currently set each time the admin opens the admin.php page.
So far i have the variables displaying when ever i access the admin page. But i need help on a simple method for changing the values from the same admin page.
Example of what i have so far.
// Start config.php example //
<?php
$variable_1 = "test content";
?>
// End config.php example
// Start admin.php page //
<?php include "config.php"; ?>
<html><head>
</head><body>
<form method="POST" action="config.php">
<td width="25%" height="25">
<p align="right"><font face="Verdana" size="2"><b>Example 1 :</b></font></td>
<td width="25%" height="25">
<input type="text" name="index_key" size="20" value="<?php echo "$variable_1"; ?>">
</td>
<input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
</html>
// End admin.php page //