- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
<?php
if ($submit == 'Поcлать')
{
if ($name=='' or $theme=='' or $mail=='' or $message=='' or $pr!='5')
$tempu = file_get_contents("php/friend/nosentfr.html");
else
{
$message = str_replace("<","<",$message);
$message = str_replace(">",">",$message);
$message = str_replace("\n","<br>",$message);
$message = str_replace("\r","",$message);
$message = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",
"<a target=_blank href=\"\\0\">\\0</a>", $message);
$name = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",
"<a target=_blank href=\"\\0\">\\0</a>", $name);
$data = date ("d m Y") ." г.";
$body = file_get_contents("php/friend/friend.html");
$user = $mail;
$newm = $turl;
//перемещение данных в собщении
$body = str_replace ("%name%",$name,$body);
$body = str_replace ("2011",$data,$body);
$body = str_replace ("%message%",$message,$body);
$body = str_replace ("%mail%",$mail,$body);
$body = str_replace ("%newm%",$newm,$body);
$body = str_replace ("%theme%",$theme,$body);
$headers = "Content-Type: text/html; charset=UTF-8\n";
@mail ($user,$newm,$body,$headers);
я
$tempu = file_get_contents("php/friend/sentfr.html");
//перемещение участков строк в файле sentmail.html
$tempu = str_replace("%mail%","$mail",$tempu );
$tempu = str_replace("%name%","$name",$tempu );
$tempu = str_replace("%theme%","$theme",$tempu );
$tempu = str_replace("2011","$data",$tempu );
$tempu = str_replace("%message%","$message",$tempu );
}
}
else
{
$tempu = file_get_contents ("php/friend/formfriend.html");
$tempu = str_replace ("%prurl%",$_SERVER['HTTP_REFERER'],$tempu);
}
?>
guest 11.04.2011 21:03 # 0
Lure Of Chaos 11.04.2011 23:12 # 0
Uchkuma 12.04.2011 07:17 # +6
Lure Of Chaos 12.04.2011 13:16 # 0
Govnocoder#0xFF 12.04.2011 10:02 # 0
wvxvw 12.04.2011 15:05 # −2
Vasiliy 12.04.2011 15:21 # 0
wvxvw 12.04.2011 22:16 # 0
Недавно еще попадалась статья, которая очень хорошо объясняла почему и как. Тут скорее удивление от того, как человек в целом написавший плохой код нашел это. Пути Гугла конечно неисповедимы, но что же он искал, чтобы такое найти :)