File size: 1.88Kb
<?php
/*
/////////////////////////////////////////////
// Автор: TDR //
// ICQ: 563-1991-59 //
// E-mail: [email protected] //
// Сайт: gens.wup.ru Все для WAP-мастеров //
/////////////////////////////////////////////
*/
define('_IN_JOHNCMS', 1);
$textl = 'Массовая проверка Google PageRank';
$rootpath = '../../';
require_once ("../../incfiles/core.php");
require_once ("../../incfiles/head.php");
header("Content-type:text/html; charset=utf-8");
echo '<div class="phdr">Массовая проверка Google PageRank</div>';
echo '<div class="menu">Утилита для проверки Google PageRank для списка сайтов. Используется сервис toolbarqueries.google.com..</div>';
echo '<div class="menu">
<form id="form1" name="form1" method="post" action="index.php?mod=1">
<table width="100%" border="0" class="ttable">
<tr><td>Cписок URL’s:</td></tr>
<tr><td><textarea name="urls" cols="40" rows="10" id="urls"></textarea></td></tr>
<tr><td><input type="submit" name="Submit" value="Проверить PR" /></td></tr>
<tr><td>
';
if($_POST['urls'])
{
require('../../seoanaliz/mgprc/functions.php');
$urllist=explode("\n", $_POST['urls']);
$url_count=count($urllist);
echo '<br />Количество 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>';
}
}
echo "</td>
</tr>
</table>
</form>
</div>";
echo '<div class="bmenu">« <a href="/masterwap/index.php">Назад</a></div>';
require_once ("../../incfiles/end.php");
?>