geraldpolar Posted September 6, 2010 Share Posted September 6, 2010 So I am having this problem on my page its my login. Well its actually being included on my mainfile(index.php) <div id="login_content_one"><div id="login_one"><?php include('home.php') ?></div></div> And this is my home.php code echo "<form action='login.php' method='POST'>"; As it goes from home.php>login.php it changes to a different page, how can i maintain the trapping message like ("No username") on the same page? This is a good example, gerald.hengeraldtrading.com < check the login it goes on another page. Link to comment https://forums.phpfreaks.com/topic/212683-login-on-same-page-redirections/ Share on other sites More sharing options...
landysaccount Posted September 6, 2010 Share Posted September 6, 2010 In login.php check if username is set: if( isset($_REQUEST['username'] ) && $_REQUEST['username'] == '' ){ echo "No username"; } Link to comment https://forums.phpfreaks.com/topic/212683-login-on-same-page-redirections/#findComment-1107917 Share on other sites More sharing options...
geraldpolar Posted September 6, 2010 Author Share Posted September 6, 2010 its still going out on another page Is there anyway to properly include somefiles? like login area on a webpage Link to comment https://forums.phpfreaks.com/topic/212683-login-on-same-page-redirections/#findComment-1107918 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.