Naoa Posted May 27, 2008 Share Posted May 27, 2008 Hello, so I'm working on a project in school at the moment and I'm really new to php and all this stuff so I was just wondering if it's possible to do this in any way: <? <form action="<?echo $_SERVER['PHP_SELF'];?>" method="$_GET"> TEXT<br> <input type="text" name="TEXT"><br> TEXT<br> <input type="text" name="TEXT"><br> <input type="hidden" name="TEXT_id" value="<?echo $TEXT_id ?>"> <input type="submit" value="TEXT"> </form> ?> Why I'd like to know is because I've made a login screen (to admin) and when I have the <form action> outside the PHP tags then it will be showed on the login screen, AND the admin screen. But I just want to see it when I logged in as admin. Really sorry for poor explanation but as stated, I'm really new to php and I'd be more than happy if you could give me a hand. Just give me a shout if you need more information please. Link to comment https://forums.phpfreaks.com/topic/107475-inside-php/ Share on other sites More sharing options...
unidox Posted May 27, 2008 Share Posted May 27, 2008 use sessions then use an if statement to determine if the user is logged in as admin, if he is, then display the form. Link to comment https://forums.phpfreaks.com/topic/107475-inside-php/#findComment-550889 Share on other sites More sharing options...
Naoa Posted May 27, 2008 Author Share Posted May 27, 2008 Oh that's very nice information. Thou, care to teach me how? As stated, I'm -really- new to php and I barely know any commands at the moment. Link to comment https://forums.phpfreaks.com/topic/107475-inside-php/#findComment-550900 Share on other sites More sharing options...
unidox Posted May 27, 2008 Share Posted May 27, 2008 Let me see your login script so I can implement for you. Link to comment https://forums.phpfreaks.com/topic/107475-inside-php/#findComment-551009 Share on other sites More sharing options...
revraz Posted May 27, 2008 Share Posted May 27, 2008 Or better yet, search on Sessions and PHP and learn for yourself, instead of having someone else do it for you. Tons of Session tutorials out there. Link to comment https://forums.phpfreaks.com/topic/107475-inside-php/#findComment-551014 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.