$details = json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip={$ip}"));
$city = $details->{'geoplugin_city'}; // Город
$region = $details->{'geoplugin_region'}; // Регион
$country = $details->{'geoplugin_countryCode'}; // Код страны
$details = json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip={$ip}"));
echo $details;
// Проверяем есть ли пользователь у него в друзьях
if ($friends == $login){
echo 'Привет друг';
}
<?php
//Запуск сессий;
session_start();
include 'db.php';
$login = 'test';
$pass = 'test';
if (isset($_POST['login']) && isset($_POST['password']))
{
// получаем данные из формы с авторизацией
$login_c = mysql_real_escape_string($_POST['login']);
$password_c = $_POST['password'];
//проверка пароля и логина
if (($login_c==$login)&& ($password_c==$pass)){
echo ("логин совпадает и пароль верны");
$_SESSION['Name']=$login_c;
// идем на страницу для авторизованного пользователя
header("Location: http://".$_SERVER['SERVER_NAME']);
}
else
{
die('Такой логин с паролем не найдены в базе данных.');
}
}
?>
<h1>Log into your account</h1>
<form method = "POST">
<input type="text" name="login" placeholder="Login">
<input type="password" name="password" placeholder="Password">
<button type="submit">Login</button>
</form>
$data = json_decode($html);
$posts = $data->results->posts;
if (isset($text_for_pars)) {
foreach($posts as $post) {
$filename = 'pars.txt';
$text = "https://".$post->link;
//записываем файл
file_put_contents($filename, $text."\r\n", FILE_APPEND);
//вывод результата на экран
// echo "https://".$post->link."<br>";
}
}
header("Location: ".$_SERVER['PHP_PHP_SELF']);
break;