I want to list the last created tables names as list in my site.There have sql backup file of database.When iam using the below code to list names,the table names repeated more than one.
This is my php code:
function mysql_import_file($filename, &$errmsg, $dbname)
{
/* Read the file */
$lines = file($filename);
if(!$lines)
{
$errmsg = "cannot open file $filename";
return false;
}
$scriptfile = false;
/* Get rid of the comments and form one jumbo line */
foreach($lines as $line)
{
$line = trim($line);
if(!@ereg('^--', $line))
{
$scriptfile.=" ".$line;
}
}
if(!$scriptfile)
{
$errmsg = "no text found in $filename";
return false;
// $status==0;
}
/* Split the jumbo line into smaller lines */
$queries = explode(';', $scriptfile);
/* Run each line as a query */
$tblstr = "";
foreach($queries as $query)
{
$query = trim($query);
if($query == "") { continue; }
if(!mysql_query($query.';'))
{
$errmsg = "query ".$query." failed";
return false;
// $status==0;
}
else
{
$status=1;
$newsql = "select table_name from information_schema.tables where table_schema = '$dbname' order by create_time desc limit 1";
$dasql = mysql_query($newsql);
$danewsql = mysql_fetch_row($dasql);
if($danewsql)
{
$tblstr.=$danewsql[0].',';
//die();
}
}
}
if($status==1)
{
$tblstr = substr($tblstr,0,-1);
return $tblstr;
}
}
What is the problem in my code?
The $tblstr is the final result.