Jump to content

Recommended Posts

I remember this topic coming up a while ago; I just can't remember what function was mentioned. Basically, say you have a config file with variables in it; and you want to be able to edit that config file via a form. What would be the best way (while making it usable for non-programmers) about doing that?

Link to comment
https://forums.phpfreaks.com/topic/180093-solved-editing-variables/
Share on other sites

You could store the values in a config database table and then load them in via a config.inc.php. Or you could write them to the file config.inc.php

 

I usually set config values as constansts i.e

define(UPLOAD_IMAGE_SIZE_W, 300);
define(UPLOAD_IMAGE_SIZE_H, 100);

so if I save to a database I store the key and the value. Then when it comes to creating the config file:

<?php
// config.inc.php
$result = mysql_query("SELECT configkey, configval FROM config");
while($row = mysql_fetch_object($result)) {
  define($row->configkey, $row->configval);
}
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.