Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a clean way (no hardcoding) in which I can dump all the contents of a database directly to HTML using PHP?

I don't want to run queries for every table and step through the results, outputting them. I need this for testing purposes, so the tables aren't that big.

Any hints?

I want this done directly in my php file, where the rest of the test takes place, so that I may compare with the sample. I need to do this automatically, so can't really use tools like PHPMyAdmin.

share|improve this question
4  
Try PHPMyAdmin? – TimWolla Jan 22 '12 at 18:18
Or Adminer :-) – Bojangles Jan 22 '12 at 18:54

3 Answers

up vote 1 down vote accepted

Something like this ought to work:

<?php

function dump_mysql_results($mysql_table){
    $query = mysql_query("SELECT * FROM `$table` WHERE 1",[your connection]) or die(mysql_error());
    if (!mysql_num_rows($query)){die("No rows in $table");}
    while($r=mysql_fetch_array($query)){
        if (!isset($html)){
            $keys = array_keys($r); 
            $html = "<tr>";
            foreach($keys as $key){
                $html .= "<th>$key</th>";
            }
            $html .= "</tr>";
        }
        $html .= "<tr>";
        foreach($r as $value){
            $html .= "<td>$value</td>";
        }
        $html .= "</tr>";   
    }
    return "<table>".$html."</table>";
}

//ADDING a loop to dump the whole db:

$tables = mysql_list_tables ( 'database name',$link_identifier) or die(mysql_error());
while($r=mysql_fetch_array($tables)){
    echo dump_mysql_results($r[0]);
}

?>
share|improve this answer
use this function and write a loop based on the results of a mysql_list_tables function: php.net/manual/en/function.mysql-list-tables.php... I've modified my answer slightly to show this. – Ben D Jan 22 '12 at 18:30
I used this, since I can't find a more elegant way of doing it. Thanks! – Luchian Grigore Jan 22 '12 at 19:28

Use SHOW TABLES to get the list of tables, then iterate through them normally to select all the rows and display in HTML.

See http://dev.mysql.com/doc/refman/5.5/en/show-tables.html

share|improve this answer

What about mysqldump ?

<?php
 exec('mysqldump --user=DBuser --password=DBpass --host=localhost --compact --xml DBname > file.xml');
?>

Then use simpleXML to convert xml to HTML

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.