ekodurmus
baglan.php
<?php
##veritabanı için gerekli connection dosyası.
$sunucu = "localhost";
$kuladi = "testuser";
$sifre = "12345678@";
$verit = "testdb";
$baglan=@mysql_connect($sunucu, $kuladi, $sifre) or die(mysql_error());mysql_select_db($verit, $baglan) or die(mysql_error());
mysql_query("SET NAMES utf8");
mysql_query("SET CHARACTER SET utf8");
mysql_query("SET COLLATION_CONNECTION='utf8_general_ci'");
?>
index.php
<?php
##buraya post nereden geliyor bilinmiyor. Bir input açtım oradan kendi kendini post edecek.
include('baglan.php');
session_start();
if (!empty($_POST["ad"]) || (!empty($_POST["yas"])) || (!empty($_POST["yas"])) ) {
$_SESSION["ad"] = $_POST["ad"];
$_SESSION["soyad"] = $_POST["soyad"];
$_SESSION["yas"] = $_POST["yas"];
echo "Sessiona değerler atandı. Şimdi diğer sayfaya geçiniz!";
#otomatik geçmek istiyorsanız
# header("Location: ikinci.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Index.php</title>
</head>
<body>
<form action="index.php" method="POST">
<input type="text" name="ad">
<input type="text" name="soyad">
<input type="text" name="yas">
<input type="submit" name="buton">
</form>
</body>
</html>
ikinci.php
<?php
include('baglan.php');
session_start();
function GetIP(){
if(getenv("HTTP_CLIENT_IP")) {
$ip = getenv("HTTP_CLIENT_IP");
} elseif(getenv("HTTP_X_FORWARDED_FOR")) {
$ip = getenv("HTTP_X_FORWARDED_FOR");
if (strstr($ip, ',')) {
$tmp = explode (',', $ip);
$ip = trim($tmp[0]);
}
} else {
$ip = getenv("REMOTE_ADDR");
}
return $ip;
}
$ipcik = GetIP();
$ipcik2 = GetIP();
if ($_POST['veri'] != "")
{
$isim=htmlspecialchars($_SESSION['ad']);
$soyisim=htmlspecialchars($_SESSION['soyad']);
$yasveri=htmlspecialchars($_SESSION['yas']);
#mysql_query("insert into ak (ad, soyad, tarih, yasi, notif, ses, ip, ip2) values ( '$ad' , '$soyad', now(), '$yas', '1', '1', '$ipcik', '$ipcik2')");
}
?>
ucuncu.php
<?php
session_start();
include('baglan.php');
function GetIP(){
if(getenv("HTTP_CLIENT_IP")) {
$ip = getenv("HTTP_CLIENT_IP");
} elseif(getenv("HTTP_X_FORWARDED_FOR")) {
$ip = getenv("HTTP_X_FORWARDED_FOR");
if (strstr($ip, ',')) {
$tmp = explode (',', $ip);
$ip = trim($tmp[0]);
}
} else {
$ip = getenv("REMOTE_ADDR");
}
return $ip;
}
$ipcik = GetIP();
$ipcik2 = GetIP();
if ($_POST['veri'] != "")
{
$isim=htmlspecialchars($_SESSION['ad']);
$soyisim=htmlspecialchars($_SESSION['soyad']);
$yasveri=htmlspecialchars($_SESSION['yas']);
#mysql_query("insert into ak (ad, soyad, tarih, yasi, notif, ses, ip, ip2) values ( '$ad' , '$soyad', now(), '$yas', '1', '1', '$ipcik', '$ipcik2')");
}
?>