Tryag File Manager
Home
-
Turbo Force
Current Path :
/
home
/
cluster1
/
data
/
bu01
/
1121861
/
jlex
/
nahuatl
/
php4
/
Upload File :
New :
File
Dir
//home/cluster1/data/bu01/1121861/jlex/nahuatl/php4/nahuatl_setup.php4~
<? include_once("../../php4/db_loader.php4"); $function = $_POST["function"]; if($function == "") { $function = $_GET["function"]; } if($function == "create_mydictionary_db") { $dl = new db_loader(); $dl->xml_to_db_bulk("mydict","../../mydict/schema.xml","",$dl->CREATE_NEW_DATABASE); echo "<B>Thank you for creating a My Dictionary database! Please click <a href='../login.html'>here</a> to login to your My Dictionary.</B><BR>"; $in = fopen("../nahuatl_setup.html","r"); while($line = fgets($in)) { echo $line; } } else if($function == "create_user_db") { $dl = new db_loader(); $dl->xml_to_db_bulk("user","../../user/schema.xml","",$dl->CREATE_NEW_DATABASE); echo "<B>Thank you for creating a User database! Please click on <a href='../login.html'>here</a> to create your first account.</B><BR>"; $in = fopen("../nahuatl_setup.html","r"); while($line = fgets($in)) { echo $line; } } ?>