File: /home/sinanpasha/public_html/risale/yeni/uyelik-aktivasyonu.php
<?php
include ("include/uye-oturum.php");
// Link ile gönderilen email değişkenini $_GET ile çek.
$email = $_GET ["email"];
if ($email=="") {
header("location:index.php");
}
?>
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8">
<title>Bil Soft Eticaret - Üyelik Aktivasyonu</title>
<meta name="language" content="tr">
<meta name="description" content=" ">
<meta name="author" content="Bil Shop Eticaret Sitesi">
<meta name="robots" content="index,follow">
<meta name="Copyright" content="Tüm hakları Bil Shop Firmasına aittir.">
<link rel="stylesheet" type="text/css" href="css/stiller.css">
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Responsive için gerekli Head kodu başladı -->
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/stiller-responsive.css">
<link rel="stylesheet" href="js/responsive-menu/slicknav.css">
<script src="js/responsive-menu/modernizr.min.js"></script>
<!-- Responsive için gerekli Head kodu bitti -->
</head>
<body>
<!-- ==================== Header Top ==================== -->
<?php
include("include/header-top.php");
?>
<!-- ==================== Wrapper Top ==================== -->
<div id="wrapper" class="sablon_width">
<?php
include ("include/header.php");
?>
<div id="page_title">
<h1>ÜYELİK AKTİVASYONU</h1>
</div>
<div id="page_content">
<?php
$aktif = mysql_query("update uyeler set durum='1' where email_adresi='$email' ");
if ($aktif) {
echo "Üyeliğiniz onaylandı";
} else {
echo "HATA : Üyeliğiniz onaylanmadı";
}
?>
</div>
<?php
include("include/adres.php");
?>
</div>
<!-- ==================== Footer Bottom ==================== -->
<?php
include("include/footer.php");
?>
</body>
</html>