-
Notifications
You must be signed in to change notification settings - Fork 0
/
iletisim.php
82 lines (57 loc) · 1.72 KB
/
iletisim.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
<?
include "1.php";
if($get->islem=="gonder"){
print "<div class=tablo>";
print "<div class=tablo-orta>";
if($post->adsoyad && $post->eposta && $post->mesaj)
{
$posta=mail(ayar_al("site_eposta"),"Teknomodi.CoM İletişim mesajı // $post->eposta","$post->mesaj","From : <$post->eposta>\r\n");
if($posta==TRUE)
echo "Mesajınız iletilmiştir.Teşekkürler !";
else
echo "Mesajınız ulaşamadı !";
}
else
{
echo "Boşlukları doldurun.";
}
tema_tablo_kapat();
}
if(yonetim())
{
if($get->islem=="duzenle"){
ayar_ver("iletisim",$post->iletisim);
header("location:?");
}}
print "<title>İletişim</title>";
tema_tablo_ac("İletişim");
if(yonetim()){
echo "<script type=text/javascript src=../ekle/whizz.js>
</script>
";
print "
<form action=?islem=duzenle method=post>
<textarea id=edited style='width:100%' name=iletisim cols=70 rows=20 >".ayar_al("iletisim")."</textarea>
<input type=submit value=Kaydet>
</form><br>
";
echo "<script>
buttonPath=\"textbuttons\";
makeWhizzyWig(\"edited\", \"bold italic color bullet table fontsize\");
</script>";
}
else
print nl2br(ayar_al("iletisim"));
tema_tablo_kapat();
tema_tablo_ac("Mesaj Gönder");
echo "<form action=?islem=gonder method=post>";
echo "<table border=0 width=100%>";
echo "<tr><td>Ad Soyad* </td><td><input class=girdi type=text name=adsoyad></td></tr>";
echo "<tr><td>e-posta* </td><td><input class=girdi type=text name=eposta></td></tr>";
echo "<tr><td>Mesaj* </td><td><textarea class=yazialani cols=60 rows=5 name=mesaj></textarea></td></tr>";
echo "<tr><td> </td><td><input type=submit value='Gönder'></td></tr>";
echo "</table>";
echo "</form>";
tema_tablo_kapat();
include "2.php";
?>