Once a query has been executed phpMyAdmin now moves back to the calling script

This commit is contained in:
Loïc Chapeaux
2001-08-19 12:13:03 +00:00
parent 59c3fc6b90
commit 4d0b6c3a3c
4 changed files with 84 additions and 32 deletions

View File

@@ -121,12 +121,16 @@ if ($sql_query != '') {
/**
* Go back to db_details.php3
* Go back to the calling script
*/
include('./header.inc.php3');
require('./header.inc.php3');
if (isset($my_die)) {
mysql_die('', $my_die);
}
$message = $strSuccess;
require('./db_details.php3');
if (!isset($goto)
|| ($goto != 'db_details.php3' && $goto != 'tbl_properties.php3')) {
$goto = 'db_details.php3';
}
require('./' . $goto);
?>