Просмотр файла catalog/conv.php

Размер файла: 3.52Kb
<?php
include "../header.php";
//include "../unicode.php";
function unicode ($s) 
{ 
	if ((ord($s)>=192) & (ord($s)<=255))
	{
		if ( (ord($s)>=192) & (ord($s)<=255) ) $hexvalue=dechex(ord($s)+848); 
		if ($s=="?") $hexvalue="401"; 
		if ($s=="?") $hexvalue="451"; 
		return("&#x0".$hexvalue.";");
	} 
	else return("$s");
};
//////////////////////////////////////////////////////
function convert ($s)
{
	$ResConAr=array ();
	for ($i=0; $i<=count($s)-1; $i++)
	{
		$Rseww="";
		for ($j=0; $j<=strlen($s[$i])-1; $j++)
		{
			$Rseww;
			$Rseww=$Rseww.unicode($s[$i][$j]);
		}
		$ResConAr;
		$ResConAr[]=$Rseww;

	};
	return($ResConAr);
};
//////////////////////////////////////////////////////
function convertStr ($s)
{
	$Rseww="";
	for ($i=0; $i<=strlen($s)-1; $i++)
	{
		$Rseww;
		$Rseww=$Rseww.unicode($s[$i]);
	}
	return($Rseww);

}
//////////////////////////////////////////////////////
function checkGetVar($var)
{
	if (array_key_exists($var,$_GET))
	return $_GET[$var];
	else
	return -1;
}
//////////////////////////////////////////////////////
print '<p align="center">wap.usahost.ru</p>';
//print '<p>';
$cat=checkGetVar("Cat");
$db_host = 'localhost';
$db_user = 'wap_root';
$db_pass = 'ghBdtn2';
$db_name = 'wap_db1';
$dbc =mysql_connect($db_host, $db_user, $db_pass); 
$dbs = mysql_select_db($db_name);
	

	$lines=file("cat.txt");
//	for ($i=0; $i<=count($lines)-1; $i++)
//	{
//	$data=explode("|", $lines[$i]);
//	if (count($data)!=4)
//	{
////	$lines[$i]=convertStr($lines[$i]);
//	}
//	};
//	for ($i=0; $i<=16; $i++)//
//	{
//		GLOBAL $catlinks;
//		$catlinks[$i][]='0';
//	};
//	$page=checkGetVar("page");
//
//	$nachalo=0;
//	if ($page==-1) {$page=0;};
//	if ($page==0) {$nachalo=1;};
	for ($i=0; $i<count($lines); $i++)
	{
//		$lines[$i]=convertStr($lines[$i]);
		$data=explode("|", $lines[$i]);
		print $data[2]."<br/>";
		//$query ="INSERT INTO `cat_catalog` (`id` , `cat` , `name` , `address`) VALUES ('".$i."', '".$data[0]."', '".$data[1]."', '".$data[2]."')";
		$query ="INSERT INTO `cat_catalog` (`cat` , `name` , `address`) VALUES ('".$data[0]."', '".$data[1]."', '".$data[2]."')";
		if (mysql_query($query)==false) {print 'fffff';} else  {print 'tttt';};
	};
//	print $page;
/*	if ((($page-1)*10+9)>count($lines)-1)
	{
		$end=count($lines)-1; 
		$konec=1;
	} else
	{
	$end=($page-1)*10+9;
	};*/
//	for ($i=($page-1)*10; $i<=$end; $i++)
/*	for ($i=0; $i<=count($lines)-1; $i++)
	{
		GLOBAL $catlinks;
		$data=explode("|", $lines[$i]);
		$catlinks[$data[0]][]="<p><a href=\"".$data[2]."\">".$data[1]."</a></p>";
	};
	if (count($catlinks[$cat])!=1)
	{
		//for ($j=1; $j<=count($catlinks[$cat])-1; $j++)
		$konec=0;
		if ((($page)*10+9)>=count($catlinks[$cat])-2)
		{
			$end=count($catlinks[$cat])-2; 
			$konec=1;
		} else
		{
			$end=($page)*10+9;
		};
//		print $catlinks[$cat][1];
		for ($j=($page)*10+1; $j<=$end+1; $j++)
		{
//			print '!='.$j.'=!';
			print $catlinks[$cat][$j]."\n";
		};
		print "<p>";
		if ($nachalo==0) {print '<a href="index.php?Cat='.$cat.'&amp;page='.($page-1).'">'.convertStr("&lt;&lt;Назад&lt;&lt;").'</a>';};
		if ($konec==0) {print '<a href="index.php?Cat='.$cat.'&amp;page='.($page+1).'">'.convertStr("&gt;&gt;Далее&gt;&gt;").'</a>';};
		print "</p>";	
	} else
	{
	print convertStr("Извините, в данном разделе ссылки отсутствуют.");
	};
	*/

//print $link;
print "<p><b>***</b></p>";
print "<p><a href=\"add.php\">".convertStr("Добавить сайт в каталог")."</a></p>";
//print '</p>';
include "../footer.php";
?>