Jump to content

PHP code for geting login/ sig in url


aftab68

Recommended Posts

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

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.

 

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.