This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"score": null, | |
"popularity": 3, | |
"translated": true, | |
"adult": false, | |
"language": "en", | |
"original_name": "Masculin feminin", | |
"name": "Masculin feminin", | |
"alternative_name": "Masculin féminin oder: Die Kinder von Marx und Coca Cola", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Error</title> | |
<style> | |
html { | |
background:-moz-radial-gradient(center center , ellipse farthest-corner, rgb(71, 134, 179) 0%, rgb(46, 86, 115) 100%) no-repeat fixed 0% 0% transparent; | |
} | |
</style> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://suggestqueries.google.com/complete/search?json&client=firefox&q=virendra&hl=en |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE signups | |
( | |
id INT PRIMARY KEY AUTO_INCREMENT, | |
email VARCHAR(70), | |
uid VARCHAR(200), | |
username VARCHAR(100), | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE signups | |
( | |
id INT PRIMARY KEY AUTO_INCREMENT, | |
email VARCHAR(70), | |
uid VARCHAR(200), | |
username VARCHAR(100) | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('DB_SERVER', 'localhost'); | |
define('DB_USERNAME', ' '); // Your DB Username goes here | |
define('DB_PASSWORD', ' '); // Your DB PassWord Goes here | |
define('DB_DATABASE', ' '); // The name of the DB goes here | |
$connection = mysql_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD) or die(mysql_error()); | |
$database = mysql_select_db(DB_DATABASE) or die(mysql_error()); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'src/facebook.php'; | |
require 'db/functions.php'; | |
$facebook = new Facebook(array( | |
'appId' => ' ', // Add your APP ID here | |
'secret' => ' ', // Add your App secret here | |
)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$params = array( | |
'scope' => 'email', | |
'redirect_uri' => ' ' // Add your Redirect URI Here | |
); | |
$loginUrl = $facebook->getLoginUrl($params); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#alert{ | |
position:fixed; | |
display:none; | |
left:50%; | |
margin-left:-300px; | |
bottom:120px; | |
width:600px; | |
text-align:center; | |
height:auto; | |
background:#eee; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function alert(textToshow, timeToShow) { | |
$("#alertText").html(textToshow); | |
$("#alert").fadeIn(1000, function() { | |
$("#alertText").fadeIn(700); | |
}); | |
setTimeout(function() { | |
hideAlert(); | |
}, timeToShow); | |
} |
OlderNewer