You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
734 B
33 lines
734 B
<?php // $Id: export.php,v 1.2.2.2 2010/07/24 02:57:22 arborrow Exp $
|
|
|
|
require( "../../../config.php");
|
|
|
|
export();
|
|
|
|
function export()
|
|
{
|
|
global $CFG;
|
|
|
|
|
|
$file = "import.php";
|
|
$h = fopen($file, 'w') or die("can't open file");
|
|
|
|
fwrite( $h, "<?php\r\n");
|
|
fwrite( $h, "require( \"../../../config.php\");\r\n\r\n");
|
|
|
|
if( ($recs=get_records_select( 'game_sudoku_database')) == false)
|
|
error('empty');
|
|
|
|
$i = 0;
|
|
foreach( $recs as $rec)
|
|
{
|
|
fwrite( $h, "execute_sql( \"INSERT INTO {$CFG->prefix}game_sudoku_database( level, opened, data) ".
|
|
"VALUES ($rec->level, $rec->opened, '$rec->data')\", false);\r\n");
|
|
if( ++$i % 10 == 0)
|
|
fwrite( $h, "\r\n");
|
|
}
|
|
fwrite( $h, "\r\necho'Finished importing';");
|
|
|
|
fclose($h);
|
|
|
|
}
|
|
|