- mtweb 0.5.0
+ mtweb 0.5.1
copyright dj3c1t 2012
programme en GNU/GPLv3
historique des modifications :
------------------------------
+0.5.1 :
+-------
+
+9 Dec 2012
+
+correction bug table_exists
+
+
0.5.0 :
-------
return $this->query("USE ".$db_name);\r
}
- function table_exists($base, $table){\r
+ function table_exists($table){\r
if(!$this->link) $this->connect($this->host, $this->base, $this->user, $this->password);\r
- $this->select_db($base);\r
$rst = $this->query("SHOW TABLES");\r
while($v_rst = mysql_fetch_array($rst)){\r
if(strcmp($v_rst[0], $table) == 0) return true;\r