Просмотр файла mail/index.php

Размер файла: 821B
<?php
include'../config.php';
include'../include/head.php';
if(isset($_GET['email'])){
$email=htmlspecialchars(stripslashes($_GET['email']));
}else{
$email="@";}
$rnd=rand(10,99);
$f=fopen('../data/mail.dat','w');
fputs($f,$rnd);
fclose($f);
echo'<form action="sendmail.php" method="post">
Мыло:<br/><input type="text" name="to" maxlength="60" value="'.$email.'"/><br/>
Tема сообщения:<br /><input type="text" name="sub" value="Превед !"/><br />
Tекст сообщения:<br/><input type="text" name="msg"/><br/>
От кого:<br/><input type="text" name="who" maxlength="60" value=""/><br/>
Введите число '.$rnd.' :<input type="text" size="3" name="rnd" /><br/>
<input type="submit" value="Отправить"/>
</form>';
include'../include/foot.php';
exit;
?>