Файл: inc/tools/mass_pr_checker/index.php
Строк: 29
<form id="form1" name="form1" method="post" action="">
<table width="100%" border="0" align="center" class="ttable">
<tr>
<td bgcolor="#D4D0C8"><strong>Массовая проверка Google Pagerank </strong></td>
</tr>
<tr>
<td align="center">список URLS:
<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"><input type="submit" name="Submit" value="Проверить PR" /></td>
</tr>
<tr>
<td><?php
if($_POST['urls'])
{
require('inc/tools/mass_pr_checker/functions.php');
$urllist=explode("n", $_POST['urls']);
$url_count=count($urllist);
echo 'Количество URL для проверки: <b>'.$url_count.'</b><br><br>';
if($url_count)
{
echo '<table width="100%">';
for($i=0; $i<$url_count; $i++)
{
ob_flush(); flush();
$url=trim($urllist[$i]);
echo '<tr><td><b>URL:</b> '.$url.'</td><td>PageRank: <b>'.check_pr($url).'</b></td></tr>';
usleep(10);
}
echo '</table>';
}
}
?></td>
</tr>
</table>
</form>