Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

Greska "The configuration did not recieve appropriate variables to accept your request."

[es] :: PHP :: Greska "The configuration did not recieve appropriate variables to accept your request."

[ Pregleda: 1112 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

picos_f
serbia

Član broj: 103266
Poruke: 44
91.150.121.*



Profil

icon Greska "The configuration did not recieve appropriate variables to accept your request."24.01.2010. u 15:14 - pre 173 meseci
Kada pokrene ovaj kod (ovde nije dat ceo kod) dobijem gresku "The configuration did not recieve appropriate variables to accept your request." Ako neko moze da mi pomogne bio bih puno zahvalan

Code:
<?php
/*

*/
define("CALC_PERIOD",24*60*60);
class DBConnect
{
private $link=null;
private $db=null;
private $result=null;
private $primareyKeyField="userid";
private $dbtables=null;
private $dbfields=null;

function DBConnect($userid=" ----datebase user here---",$password="",$host="---- host name Here-----") ========>edit here host datebase user
{
$this->link=mysql_connect($host, $userid, $password) or die(mysql_error());
}
function setDatabase($db)
{
$this->db=$db;
mysql_select_db($this->db, $this->link) or die(mysql_error());
$tableSql="show tables from `".$this->db."`";
$res=mysql_query($tableSql, $this->link) or die(mysql_error());
while($row=mysql_fetch_row($res))
{
$this->dbtables[]=$row[0];
}
foreach($this->dbtables as $ind=>$table)
{
$defaultValueSql="show fields from `".$this->db."`.`".$table."`";
$res=mysql_query($defaultValueSql, $this->link) or die(mysql_error());
while($row=mysql_fetch_assoc($res))
{
$fldname=$row["Field"];
unset($row["Field"]);
$this->dbfields[$table][$fldname]=$row;
}
}
}
 
Odgovor na temu

Fedya
Fedor Hajdu
Solution Architect
Emaratech
Dubai, UAE

Član broj: 28246
Poruke: 790
*.ADSL.neobee.net.

Jabber: fedya@elitesecurity.org
Sajt: devtechgroup.com


+34 Profil

icon Re: Greska "The configuration did not recieve appropriate variables to accept your request."25.01.2010. u 00:42 - pre 173 meseci
Probaj da postujes u PHP ili MySQL forume, ovde cisto sumnjam da ces dobiti odgovor.
Every hamster has his day.
 
Odgovor na temu

[es] :: PHP :: Greska "The configuration did not recieve appropriate variables to accept your request."

[ Pregleda: 1112 | Odgovora: 1 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.