xtopzi
Regular Member
- Sep 28, 2010
- 299
- 207
I'm building a website in HTML / PHP and would like to implement an overly simple admin area. Not looking for a blogging CMS whatsoever.
So basically I just want the admin to be able to change simple variables but through a user friendly interface. Example:
(in the config.php)
(in the header)
And then the user can change these through the backend instead of a text editor. So to wrap it up:
Really nothing more than that. I'm shit at coding so it must also be friendly for me to convert HTML site to work with the admin panel. Thanks
So basically I just want the admin to be able to change simple variables but through a user friendly interface. Example:
(in the config.php)
Code:
<?php $logo = '<img src="http://www.blackhatworld.com/blackhat-seo/images/logo.jpg">'; ?>
(in the header)
Code:
<?php echo $logo ?>
And then the user can change these through the backend instead of a text editor. So to wrap it up:
- Users can change a var value such as their aff URL in a form input area
- Users can turn features on and off with a radio button (0,1)
- The most complicated feature will probably be the logo upload.
Really nothing more than that. I'm shit at coding so it must also be friendly for me to convert HTML site to work with the admin panel. Thanks
Last edited: