Файл: inc/tools/dc_pr_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>Проверка Google Pagerank по датацентрам Google </strong></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><strong>Совет:</strong> IP адреса датацентров можно отредактировать в файле /<em>dc_pr_checker/datacenters.txt</em></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>URL:
<label>
<input name="url" type="text" id="url" size="50" />
<input type="submit" name="Submit" value="Проверить PR" />
</label></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><?php
if($_POST['url'])
{
require('inc/tools/dc_pr_checker/functions.php');
$datacenters=file('inc/tools/dc_pr_checker/datacenters.txt');
$dc_count=count($datacenters);
echo 'Google датацентров в базе: <b>'.$dc_count.'</b><br><br>
Проверка PageRank для URL: <i>'.$_POST['url'].'</i><br><br>';
if($dc_count)
{
echo '<table width="100%">';
for($i=0; $i<$dc_count; $i++)
{
ob_flush(); flush();
$dc=trim($datacenters[$i]);
echo '<tr><td>Датацентр: <a href="http://'.$dc.'" target="_blank">'.$dc.'</a></td><td>PageRank: <b>'.check_pr($_POST['url'], $dc).'</b></td></tr>';
usleep(10);
}
echo '</table>';
}
}
?></td>
</tr>
</table>
</form>