Wow, personally I like this better! Couple suggestions... - make the version number match that of PhpDig (easier for users to follow)
- database it based on a new value (value doesn't exist yet) in the config file
If going to database it, I'd suggest a table something like the following:
CREATE TABLE prefix_config (
c_key VARCHAR(255) NOT NULL,
c_val VARCHAR(255) NOT NULL,
c_type VARCHAR(255) NOT NULL,
KEY c_key (c_key)
) TYPE=MyISAM;
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
|