有两个页面叫做Group_profile.php和group_create.php group_create.php在填充这些字段后显示文本字段,然后单击提交,我想重定向Group_profile.php页面。在检查我想重定向Group_profile.php页面的验证后,group_create.php有一些验证。
我的观点
使用此i将值插入db.this还包含我的验证方法
<form name="myForm" onsubmit="return validateForm()" method="post" action=<?php echo base_url('index.php/con_group_profile/insert');?> >
这是我的提交按钮 创建您的组配置文件
我的问题是我想放置重定向代码和什么是重定向代码。
答案 0 :(得分:2)
验证后,请输入:
header("Location: whereever.php");
exit;
由于您已使用codigniter
标记了问题,因此在您的控制器中也有a built-in way:
$this->load->helper('url');
redirect('/whereever/23');
答案 1 :(得分:1)
试试这个
redirect(base_url().'controller/method'); # controller - name of your controller. # method - name of your method on controller