Файл: inc/tools/mass_index_checker/index.php
Строк: 34
<form id="form1" name="form1" method="post" action="">
<table width="100%" border="0" align="center" class="ttable">
<tr>
<td bgcolor="#D4D0C8"><strong>Массовая проверка индексации сайтов </strong></td>
</tr>
<tr>
<td align="center">список сайтов (без http:// и www.):
<label></label><div align="center"></div></td>
</tr>
<tr>
<td align="center"><textarea name="urls" cols="70" rows="10" id="urls"></textarea></td>
</tr>
<tr>
<td align="center"><label>Проверять индексацию:
<input name="google" type="checkbox" id="google" value="1" checked>
Google.com
<input name="yahoo" type="checkbox" id="yahoo" value="1" checked>
Yahoo.com
</label></td>
</tr>
<tr>
<td align="center"><input type="submit" name="Submit" value="Проверить индексацию" /></td>
</tr>
<tr>
<td><?php
if($_POST['urls'])
{
require('inc/tools/mass_index_checker/functions.php');
$urllist=explode("n", $_POST['urls']);
$url_count=count($urllist);
echo 'Количество сайтов для проверки: <b>'.$url_count.'</b><br><br>';
if($url_count)
{
echo '<table width="100%">';
echo '<tr><td><b>Сайт:</b></td>';
if($google)echo '<td><b>Google.com</b></td>';
if($yahoo)echo '<td><b>Yahoo.com</b></td>';
echo '</tr>';
for($i=0; $i<$url_count; $i++)
{
ob_flush(); flush();
$url=trim($urllist[$i]);
echo '<tr><td>'.$url.'</td>';
if($google)echo '<td><b>'.check_google($url).'</b></td>';
if($yahoo)echo '<td><b>'.check_yahoo($url).'</b></td>';
echo '</tr>';
usleep(10);
}
echo '</table>';
}
}
?></td>
</tr>
</table>
</form>