-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhesabimuyelikbilgilerim.php
138 lines (136 loc) · 5.72 KB
/
hesabimuyelikbilgilerim.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
$kayitTarihi = $kullanici["KayitTarihi"];
$kayitIpAdresi = $kullanici["KayitIpAdresi"];
if (isset($_SESSION["Kullanici"])) {
?>
<table width="1065" align="center" border="0" cellpadding="0" cellspacing="0" bgcolor="F9F9F9">
<tr>
<td colspan="3">
<hr/>
</td>
</tr>
<tr>
<td colspan="3">
<table width="1065" align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="UyelikBilgilerimMenu"><a href="index.php?SK=50">Üyelik Bilgilerim</a></td>
<td> </td>
<td class="UyelikBilgilerimMenu"><a href="index.php?SK=58">Adresler</a></td>
<td> </td>
<td class="UyelikBilgilerimMenu"><a href="index.php?SK=59">Favoriler</a></td>
<td> </td>
<td class="UyelikBilgilerimMenu"><a href="index.php?SK=60">Yorumlar</a></td>
<td> </td>
<td class="UyelikBilgilerimMenu"><a href="index.php?SK=61">Siparişler</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="3">
<hr/>
</td>
</tr>
<tr>
<td width="500" valign="top">
<table width="500" align="center" border="0" cellspacing="0" cellpadding="0"
style="margin-bottom: 20px; ">
<tr height="40">
<td style="color:#FF9900;"><h3>Hesabım ve Üyelik Bilgilerim</h3></td>
</tr>
<tr height="30">
<td valign="top" style="border-bottom: 1px dashed #CCC">Bilgilerinize aşağıdan
ulaşabilirsiniz.
</td>
</tr>
<tr height="30">
<td valign="bottom"><b>İsim Soyisim</b></td>
</tr>
<tr height="30">
<td valign="top"><?php echo $isimSoyisim; ?></td>
</tr>
<tr height="30">
<td valign="bottom"><b>Email Adresi</b></td>
</tr>
<tr height="30">
<td valign="top"><?php echo $emailAdresi; ?></td>
</tr>
<tr height="30">
<td valign="bottom"><b>Telefon Numarası</b></td>
</tr>
<tr height="30">
<td valign="top"><?php echo $telefonNumarasi; ?></td>
</tr>
<tr height="30">
<td valign="bottom"><b>Cinsiyet</b></td>
</tr>
<tr height="30">
<td valign="top"><?php echo $cinsiyet; ?></td>
</tr>
<tr height="30">
<td valign="bottom"><b>Durumu</b></td>
</tr>
<tr height="30">
<td valign="top"><?php if ($durumu == 1) echo "Aktif"; else echo "Pasif"; ?></td>
</tr>
<tr height="30">
<td valign="bottom"><b>Kayıt Tarihi</b></td>
</tr>
<tr height="30">
<td valign="top"><?php echo tarihBul($kayitTarihi); ?></td>
</tr>
<tr height="30">
<td valign="bottom"><b>Kayıt Ip Adresi</b></td>
</tr>
<tr height="30">
<td valign="top"><?php echo $kayitIpAdresi; ?></td>
</tr>
<tr height="30">
<td width="250"><a href="index.php?SK=51"><input type="submit" value="Üyelik Bilgilerimi Güncelle" class="YesilButon"></a></td>
</tr>
</table>
</td>
<td width="20"> </td>
<td width="545" valign="top">
<table width="545" align="center" border="0" cellspacing="0" cellpadding="0" style="padding:0px 20px;
text-align:justify;margin-bottom: 20px; ">
<tr height="40">
<td style="color: #FF9900;"><h3>Reklam</h3></td>
</tr>
<tr height="30">
<td style="border-bottom: 1px dashed #ccc;"><b>Extra Eğitim Reklamları</b>
</td>
</tr>
<tr height="5">
<td height="5"></td>
</tr>
<tr>
<td><img src="Resimler/MNGKargo156x30.png" style="margin-top: 5px;"></td>
</tr>
<tr>
<td>
Adres: Ayazağa Mah. Cendere Cad. 1B, Bulvar Ofis No:109/B, Kat: 3<br/> Sarıyer/
İSTANBUL<br/>
</td>
</tr>
<tr height="5">
<td height="5"> </td>
</tr>
<tr>
<td>
Tel: (0212) 366 55 55 pbx<br/>
Çağrı Merkezi: 0850 222 06 06<br/>
Fax: (0212) 366 55 60<br/>
E-Mail: info@mngkargo.com.tr<br/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<?php
} else {
header("Location:index.php");
exit();
}
?>