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
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.

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.