aftab68 Posted January 30, 2012 Share Posted January 30, 2012 i need help for writing a code that will get only the base url and will return you the login url, for example Base url = www.yahoo.com and in return you will get the yahoo login page url where you input the user name and password, remember the code should be dynamic i.e. what ever base url you give it will return the login/sign in url of the corrosponding url. Plz help in this regard. Regards Link to comment https://forums.phpfreaks.com/topic/256064-php-code-for-geting-login-sig-in-url/ Share on other sites More sharing options...
Pikachu2000 Posted January 30, 2012 Share Posted January 30, 2012 I really don't see how that's even possible as you've described it. Link to comment https://forums.phpfreaks.com/topic/256064-php-code-for-geting-login-sig-in-url/#findComment-1312732 Share on other sites More sharing options...
ReeceSayer Posted January 30, 2012 Share Posted January 30, 2012 If you had this code on your index page it would forward to login.php straight away. session_start(); //if not all of the variables are set forward to the login page if(!isset($_SESSION['email']) || !isset($_SESSION['sid']) || !isset($_SESSION['ip']) || !isset($_SESSION['id']) || $_SESSION['adminid'] == 1) { header("Location: login.php"); exit(); } If you meant you type in the base url and it returns you the log in url you would already have to have that in your database. Seems like an odd piece of code though. Link to comment https://forums.phpfreaks.com/topic/256064-php-code-for-geting-login-sig-in-url/#findComment-1312787 Share on other sites More sharing options...
teng84 Posted January 31, 2012 Share Posted January 31, 2012 you need to run a crawler that reads all the links from the first page and navigate each link and check if there are keywords that may match login information etc.. usually all the login links are all located in site homepage Link to comment https://forums.phpfreaks.com/topic/256064-php-code-for-geting-login-sig-in-url/#findComment-1312793 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.