php - admin system for uploading and displaying basic text and images in website. So things can be easily changed -
i novice when comes web design knowledge limited css , html. more knowledgeable can help. try make sort of admin section content can changed images , descriptions. assume can done in php. tried looking needed couldn't find edit suit needs
for example have 4 featured images , descriptions. these smaller pictures shortened description. when these clicked take page larger image , bigger description. want make these smaller stuff , larger stuff editable via admin system (basic page upload stuff) no coding experience. way don't have ask me change stuff. want password protect admin page im pretty sure can try script @ this link password part.
edit: im looking have basic web form can used change specific info on site (text , images no styling). secure page password system. basic content management system. if there 1 can used existing site need great use that.
this 1 of way can it(i assume have login system there admins), there identifier admins, let's user_level
..
now either put user_level
in session or can check in db when page loads..
now have add if statement..
e.g: admins have user_level
5. when login set session variable
$level = "" ; //get user level db $_session['user_level'] = $level;
now put in script shows image
if ($_session['user_level'] == 5) { //show option edit stuff } else { //show image }
this basic idea..
Comments
Post a Comment