在 PHP 中,一旦脚本以成功的案例 0 运行,我如何重定向我的页面,但在当前页面上保留其他任何内容?
exec( $command, $output = array(), $worked );
switch( $worked ) {
case 0:
echo "Database <b>". $database. "</b> successfully exported to <b>". $filename. '</b>';
// add redirect here
break;
case 1:
echo 'There was a warning during the export of <b>'. $database .'</b> to <b>'. $filename .'</b>';
break;
case 2:
echo 'There was an error during import.'
. 'Please make sure the import file is saved in the same folder as this script and check your values:'
. '<br/><br/><table>'
. '<tr><td>MySQL Database Name:</td><td><b>'. $database .'</b></td></tr>'
. '<tr><td>MySQL User Name:</td><td><b>'. $user .'</b></td></tr>'
. '<tr><td>MySQL Password:</td><td><b>NOTSHOWN</b></td></tr>'
. '<tr><td>MySQL Host Name:</td><td><b>'. $host .'</b></td></tr>'
. '<tr><td>MySQL Import Filename:</td><td><b>'. $filename .'</b></td>'
. '</tr></table>'
;
break;
}