我想将DVPHP 1.0.1 转换成DZ5.0,下面这段代码怎么修改?
请正确设置下面的配置信息,准备开始转换:
<form method="post" action="<?=$scriptname?>">
<table width="90%" cellspacing="1" bgcolor="#000000" border="0" align="center">
<tr bgcolor="#3A4273">
<td align="center" width="20%" style="color: #FFFFFF">设置选项</td>
<td align="center" width="30%" style="color: #FFFFFF">当前值</td>
<td align="center" width="50%" style="color: #FFFFFF">注释</td>
</tr>
<?php
foreach($initconfig AS $var => $val) {
echo '
<tr>
<td bgcolor="#E3E3EA"> '.$val[1].'</td>
<td bgcolor="#EEEEF6" align="center"><input type="text" name="'.$var.'" value="'.$configarray[$var].'" size="30"></td>
<td bgcolor="#E3E3EA"> '.$val[2].'</td>
</tr>
';
}
?>
</table>
<br>
<input type="hidden" name="action" value="config">
<input type="submit" name="submit" value="保存配置" style="height: 25">
</form>
</td>
</tr>
</table>
<?
} elseif($action == 'config') {
if(@mysql_get_server_info() >= '4.1') {
if(!in_array($source_charset, array('latin1', 'gbk', 'big5', 'utf8'))) {
cexit('请在 config.php 中正确设置 '.$source_name.' 论坛的字符集!', array('source_charset'));
}
if(!in_array($discuz_charset, array('latin1', 'gbk', 'big5', 'utf8'))) {
cexit('请在 config.php 中正确设置 Discuz! 论坛的字符集!', array('discuz_charset'));
}
$result = mysqlquery("SHOW CHARACTER SET like '$source_charset'");
if (!mysql_num_rows($result)) {
cexit('您的数据库不支持 '.$source_charset.' 字符集,请在 config.php 中正确设置 '.$source_name.' 论坛的字符集!', array('source_charset'));
}
$result = mysqlquery("SHOW CHARACTER SET like '$discuz_charset'");
if (!mysql_num_rows($result)) {
cexit('您的数据库不支持 '.$discuz_charset.' 字符集,请在 config.php 中正确设置 Discuz! 论坛的字符集!', array('discuz_charset'));
}
}
echo '<form method="post" action="'.$scriptname.'"><table width="60%" cellspacing="1" bgcolor="#000000" border="0" align="center"><tr bgcolor="#3A4273"><td align="center" colspan="2" width="20%" style="color: #FFFFFF">请选择转换步骤</td></tr><tr><td align="center" bgcolor="#E3E3EA" width="20%"><input type="radio" name="sstep" value="0" checked></td><td bgcolor="#EEEEF6"> 完全转换</td></tr>';
foreach($operations AS $key => $value) {
echo '<tr><td align="center" bgcolor="#E3E3EA" width="20%"><input type="radio" name="sstep" value="'.$key.'"></td><td bgcolor="#EEEEF6"> 单独['.$value.']</td></tr>';
}
echo '</td></tr></table><input type="hidden" name="action" value="convert"><center><input type="submit" name="submit" value="开始转换" style="height: 25"><input type="button" name="gohome" value="返回首页" onclick="javascript: location.replace(\''.$scriptname.'\')" style="height: 25"></center></form>'; |