vendredi 30 janvier 2015

open a link in a different tab


Vote count:

0




I have a button that allows authentication from twitter, everything works properly, but the only issue is that i wish to open the login-twitter.php page on a different tab, i tried using window.open in place of header but it didn't work. can anyone tell how it can be done



<?php
ob_start();
session_start();
if (isset($_SESSION['id'])) {
// Redirection to login page twitter or facebook
header("location: u_tasks.php");
}

if (array_key_exists("login", $_GET))
{
$oauth_provider = $_GET['oauth_provider'];
if ($oauth_provider == 'twitter')
{
header("Location: login-twitter.php");
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head></head>
<body>
<?
echo "<div class='col-md-9'>";
echo "<a href='?login&oauth_provider=twitter'><button style='background-color:#1dcaff; border-color:#1dcaff; color:white; height:30px; border-radius:10px;'>Go To Twitter</button></a>";
echo "</div>";
?>
</body>
</html>


asked 29 secs ago







open a link in a different tab

Aucun commentaire:

Enregistrer un commentaire