I have a variable $ CONFIG ['SiteTitle'] = 'Title of my site';
This variable is in the config.php file and even the header to define the title of all the pages. Recently create a new page for the site the general settings. On this page I want to put a form where I can change the value of this variable $ CONFIG ['SiteTitle'] .
<form>
<label>Titulo do site:</label>
<input type="text" value="<?php echo $CONFIG['SiteTitle']; >">
</form>