24 lines
812 B
PHP
24 lines
812 B
PHP
![]() |
<h2>Creating Database Tables and Importing data</h2>
|
||
|
|
||
|
|
||
|
<div id="resultsDiv" style="margin-top:20px">
|
||
|
<img src="images/loading.gif" id="loading" />
|
||
|
<span id="current">creating database structure...</span>
|
||
|
</div>
|
||
|
|
||
|
<form name="installation" method="post" id="installation">
|
||
|
<input type="hidden" name="dbhost" value="<?=@$_POST['dbhost']?>" />
|
||
|
<input type="hidden" name="dbpass" value="<?=@$_POST['dbpass']?>" />
|
||
|
<input type="hidden" name="dbname" value="<?=@$_POST['dbname']?>" />
|
||
|
<input type="hidden" name="dbuser" value="<?=@$_POST['dbuser']?>" />
|
||
|
<input type="hidden" name="dbprefix" value="<?=$_POST['dbprefix']?>" />
|
||
|
<input type="hidden" name="mode" value="adminsettings" />
|
||
|
</form>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
$(document).ready()
|
||
|
{
|
||
|
dodatabase('structure');
|
||
|
}
|
||
|
</script>
|