我在创建添加文件表单时遇到问题,如果有人想要,它会在提交后重定向以添加新文件,但是当我尝试这样做时,它仍会重定向回m =文件,因为它显示?m=files&a=addedit
。我尝试使用html_entity_decode,但仍显示相同的?m=files&a=addedit
该怎么做,这是我的重定向?
<input type="hidden" name="redirect" value="<?php echo $new = html_entity_decode('m=files&a=addedit'); ?>" />
答案 0 :(得分:1)
我认为不是100%确定OP想要什么,而只是用&
替换&
可以解决问题。
<input type="hidden" name="redirect" value="<?php echo str_replace('&', '&', 'm=files&a=addedit'); ?>" />