dedecms织梦自定义表单列表编辑联动地区显示为数字的如何解决方法

小村上空升起袅袅炊烟,好像一个身穿白纱的少女在翩翩起舞,在夕阳的照耀下婀娜多姿。
解决方法 打开 dedetempletsdiy_edit_content.htm 找到 查看源码打印代码帮助
<?php
$formfields = '';
foreach($fieldlist as $field=>$fielddata)
{
    $allowhtml = array('htmltext');
    if($row[$field]=='') continue;
    if($fielddata[1]=='img')
    {
        $row[$field] = "<input name='photo' type='file' />  <a rel="nofollow noopener noreferrer" href='{$row[$field]}' target='_blank'><img src='images/channeladd.gif' border='0' /> 浏览原图</a> <a rel="nofollow noopener noreferrer" href='diy_list.php?action=delete&diyid=$diy->diyid&id=$row[id]&do=1&name=$field'>删除原图</a>rn";
    }
    else if($fielddata[1]=='addon')
    {
        $row[$field] = "<input name='file' type='file' />  <a rel="nofollow noopener noreferrer" href='{$row[$field]}' target='_blank'><img src='images/channeladd.gif' border='0' /> 浏览原附件</a> <a rel="nofollow noopener noreferrer" href='diy_list.php?action=delete&diyid=$diy->diyid&id=$row[id]&do=1&name=$field'>删除原附件</a>";
    }
    else
    {
        if(!in_array($fielddata[1],$allowhtml)){
            $row[$field] = dede_htmlspecialchars($row[$field]);
            $row[$field] = "<input type='text' name='".$field."' value='".$row[$field]."'/>";
        }
    }
    echo '<tr bgcolor="#ffffff"><td width="20%" height="24">'.$fielddata[0].':'.'</td><td width="80%">'.$row[$field].'</td></tr>';
    $formfields .=  $formfields == ''? $field.','.$fielddata[1] : ';'.$field.','.$fielddata[1];
}
echo "<input type='hidden' name='dede_fields' value='".$formfields."'>";
?>
这一块PHP代码改成
<?php
    echo $postform;
?>

以上就是dedecms织梦自定义表单列表编辑联动地区显示为数字的如何解决方法。一切这样清楚,但是业已分开太久。时间如水,中间仿佛有河。你过不去。车流穿梭,她,转瞬湮灭在人潮中。你回首,看见梦里花落知多少?思量,思量,焉得不思量?更多关于dedecms织梦自定义表单列表编辑联动地区显示为数字的如何解决方法请关注haodaima.com其它相关文章!

标签: 方法