class head{
var $charset;
var $author;
var $keywords;
var $icon;
var $style;
var $styleprint;
var $js;
var $opis;
var $robots;
var $titlepage;
var $body;
var $copyright;
var $mail;
var $ver;
function set($what,$data){
$this->$what=$data;
}
function show2(){}
function show(){
echo "
charset."\">
mail."\">
copyright."\">
robots."\">
author."\">
opis."\">
keywords."\">
ver."\">
icon."\" type=\"image/gif\">
style."\" media=\"screen\" title=\"ekran\">
".$this->titlepage."";
echo "\n";
include $this->js;
echo"
body.">
";
}
function footer(){
echo "
";
}
}
?>
class sql extends head{
var $host;
function sql()
{
//$this->host="localhost";
}
function conn($login,$haslo,$db,$host="localhost")
{
$this->conn=mysql_connect($host,$login,$haslo) or die ("nie można ustanowić połączenia");
mysql_select_db($db);
}
function disconn(){
mysql_close($this->conn);
}
function query($q,$start=0,$ile=0)
{
if ($start==0 && $ile==0){$lim="";}else{$lim=" LIMIT ".$start.",".$ile;}
if ($_GET['mode']=='debug'){echo $q." \t";}
//$filename="sqllog.php";
//$fid1=fopen($filename, "a");
//fputs($fid1, "$q\n");
//fclose($fid1);
$this->que=mysql_query($q.$lim);
$this->que_bl=mysql_query($q);
}
function q($q){
if ($_GET['mode']=='debug'){echo $q." \t";}
//$filename="sqllog.php";
//$fid1=fopen($filename, "a");
//fputs($fid1, "$q\n");
//fclose($fid1);
$this->que=mysql_query($q);
}
function ile()
{
$d['limit']=mysql_num_rows($this->que);
$d['nolimit']=mysql_num_rows($this->que_bl);
return $d;
}
function ilec()
{
$d=mysql_num_rows($this->que);
return $d;
}
function getdata()
{
unset ($this->wynik);
$a=0;
while ($rzad=mysql_fetch_assoc($this->que))
{
$this->wynik[$a++]=$rzad;
}
}
}
?>
//baza
$conf['user']="maciekkw_01";//login uzytkownika bazy
$conf['pass']="Db4IserWis";
$conf['db']="maciekkw_iserwis05";
$conf['host_baza']="localhost";
//ip administratora (ALL, dla wszytkich);
$conf['ip']="77.253.232.160";
//$conf['ip']="83.10.113.234";
//adresy strony:
$conf['host']="http://www.edzierzoniow.pl/"; //host strony (domena). UWAGA WYMAGANE JEST HTTP:// na poczatku i / na koncu!
$conf['host_abs']=0; //jesli 0- linki odwoluja się sciezka lokalna, 1 - linki sa konstruowane calosciowo (absolutna sciezka)
$conf['path']="i/"; // wzgledna sciezka dostepu do pliku strony, na koncu musi być /
$conf['file']="index.php"; //plik strony
$conf['file_hidden']=1; //jesli 1 to nazwa pliku będzie neiwidoczna w adresie, 0 - będzie widoczny
$conf['coded']=0; //1-link bedzie kodowany, 0 -nie
$conf['tx_max_na_1s']=10;//ile maksymlanie na jedna strone ma sie wyswietlac artykulow
# max_fraz = ile maksymalnie fraz można wyszukiwac
#max_na_1s = ile maksymalnie na jedna strone ma się wyswietalac firm
$conf['firmy']=array(
'max_fraz'=>6,
'max_na_1s'=>2
);
?>
Fatal error: Uncaught Error: Class 'sql' not found in /home/www/clients/client0/web11/web/i/rest.class.php:5
Stack trace:
#0 /home/www/clients/client0/web11/web/i/rss.php(6): include()
#1 {main}
thrown in /home/www/clients/client0/web11/web/i/rest.class.php on line 5