Файл: public_html/add_iframe.php
Строк: 41
<?php
include 'includes/head.php';
error_reporting(0);
include 'conf.php';
echo "<div class='head'>Добавить сайт</div>";
echo "<div class='menu_top'><form action='add_iframe.php' method='POST'>
Ваш сайт:<br/><input type='text'
value='http://' name='site'/><input
type='submit' value='Добавить' name='submit'/>
</form></div>";
$site = htmlspecialchars($_POST['site']);
$find = @file_get_contents($site);
$text = '<iframe src="http://'.$domain.'/iframe.php" style="display:none"></iframe>';
if($_POST['site']){
if(strpos($find, $text) == TRUE){
$data = $site.'
';
$filename = "sitefile.txt";
if(is_writeable($filename)) :
$fh = fopen($filename, "a+");
$success - fwrite($fh, $data);
fclose($fh);
else : print "Could not open Sfilename for
writing";
endif;
echo "<div class='menu'><font color='yellowgreen'>Добавлено!</font></div>";
}else{
echo "<div class='menu'><font color='tomato'>Не обнаружен код!</font></div>";
}
}
echo '<a class="menu_bottom" href="index.php">Назад</a>';
include 'includes/end.php';
?>