- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 View 文件:new_request.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>New Request</title>
<script type="text/javascript">
window.onload = function() {
document.getElementById('ifYes').style.display = 'none';
document.getElementById('ifNo').style.display = 'none';
}
function yesnoCheck() {
if (document.getElementById('yesCheck').checked) {
document.getElementById('ifYes').style.display = 'block';
document.getElementById('ifNo').style.display = 'none';
}
else if(document.getElementById('noCheck').checked) {
document.getElementById('ifNo').style.display = 'block';
document.getElementById('ifYes').style.display = 'none';
}
}
</script>
</head>
<body>
<h3>Make a new Request!</h3>
<?php
echo form_open('requests/new_function');
echo validation_errors();
echo form_label('Service : ', 'service[]');
$options = array(
'facial' => 'Facial',
'threading' => 'Threading',
'spa' => 'Spa',
'service' => 'Service'
);
echo "<br>";
echo form_multiselect('service[]', $options);
echo "<br>";
echo form_label('Time(hh:mm:ss) : ', 'time');
echo form_input('time', '');
echo "<br>";
echo form_label('Date(dd-mm-yyyy) : ', 'date');
echo form_input('date', '');
echo "<br>";
echo form_label('Address : ', 'address');
?>
My Address
<input type="radio" onclick="javascript:yesnoCheck();" name="yesno" id="yesCheck"/>
New Address
<input type="radio" onclick="javascript:yesnoCheck();" name="yesno" id="noCheck"/>
<br>
<div id="ifYes" style="display:none">
<?php
echo form_label('Street : ', 'street');
echo form_input('street', $street);
echo "<br>";
echo form_label('City : ', 'city');
echo form_input('city', $city);
echo "<br>";
echo form_label('State : ', 'state');
echo form_input('state', $state);
echo "<br>";
echo form_label('PinCode : ', 'pincode');
echo form_input('pincode', $pincode);
echo "<br>";
?>
</div>
<div id="ifNo" style="display:none">
<?php
echo form_label('Street : ', 'street');
echo form_input('street', '');
echo "<br>";
echo form_label('City : ', 'city');
echo form_input('city', '');
echo "<br>";
echo form_label('State : ', 'state');
echo form_input('state', '');
echo "<br>";
echo form_label('PinCode : ', 'pincode');
echo form_input('pincode', '');
echo "<br>";
?>
</div>
<?php
echo "<br>";
//adding CAPTCHA
$random_number = substr(number_format(time() * rand(),0,'',''),0,6);
$vals = array(
'word' => $random_number,
'img_path' => './captcha/',
'img_url' => base_url().'captcha/',
'img_width' => 140,
'img_height' => 32,
'expiration' => 7200
);
$cap = create_captcha($vals);
echo $cap['image'];
?>
<br>
<?php
$this->session->set_userdata('captchaWord', $cap['word']);
echo form_label('Please fill in the string above : ', 'captcha');
echo form_input('captcha', '');
echo "<br>";
echo form_submit('submit-button-request', 'Submit Request');
echo form_close();
?>
</body>
</html>
问题是 $this->input->post('street') 和类似的 'city'、'state'、'pincode' 不起作用。它返回空字段。“ifYes”div 是从数据库中预先填充的。
这是 Controller 文件:Requests.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Requests extends CI_Controller {
public function new_req()
{
$this->load->model('model_users');
$object = $this->model_users->getRow($this->session->userdata('email'));
//var_dump($object);die();
$data['street'] = $object[0]->street;
$data['city'] = $object[0]->city;
$data['state'] = $object[0]->state;
$data['pincode'] = $object[0]->pincode;
$this->load->view('new_request', $data);
}
public function new_function()
{
$this->form_validation->set_rules('service[]', 'Service', 'required');
// $this->form_validation->set_rules('street', 'Street', 'required');
// $this->form_validation->set_rules('city', 'City', 'required');
// $this->form_validation->set_rules('state', 'State', 'required');
// $this->form_validation->set_rules('pincode', 'Pincode', 'required');
$this->form_validation->set_rules('time', 'Time', 'required|regex_match[/^[0-9]{2}:[0-9]{2}:[0-9]{2}$/]');
$this->form_validation->set_rules('date', 'Date', 'required|regex_match[/^[0-9]{2}-[0-9]{2}-[0-9]{4}$/]');
$this->form_validation->set_rules('captcha', 'Captcha', 'required|callback_checkCaptcha');
$date = $this->input->post('date');
$time = $this->input->post('time');
$date_time = nice_date($date, 'Y-m-d') . " " . $time;
$service = implode(',' , $this->input->post('service[]'));
$data = array(
'email_customer' => $this->session->userdata('email'),
'service' => $service,
'date_time' => $date_time,
'street' => $this->input->post('street'),
'city' => $this->input->post('city'),
'state' => $this->input->post('state'),
'pincode' => $this->input->post('pincode'),
);
$this->load->model('model_users');
if($this->form_validation->run() == FALSE)
{
$this->load->view('new_request');
}
else
{
$this->model_users->insert_request($data);
redirect('main/members');
}
}
public function old_req()
{
}
public function checkCaptcha($captcha)
{
if($this->session->userdata('captchaWord') == $captcha)
{
return true;
}
else
{
$this->form_validation->set_message('checkCaptcha', 'Please fill in the Captcha String Correctly!');
return false;
}
}
}
最佳答案
问题是您重复了字段名称。提交表单后,任何重复命名的字段中的最后一个字段将被发布。换句话说,只有“isNo”Div 被服务器接受并放入 $_POST 中。
解决方案是重命名一组字段或另一组字段,即在“isNo”div 中在所有字段名称前面加上“new_”,即 new_street、new_city 等。
关于javascript - Codeigniter - 特定输入不按表单获取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37852984/
我想扩展调用 getMessage 时返回自定义消息的异常类。 class MY_Exceptions extends CI_Exceptions{ function __construct
我已经安装了一个干净的 Apache2(加上 PHP 和 MySQL)服务器并启用了 mod_rewrite在 apache 配置中。 我添加了 .htaccess文件以从 url 中删除 index
我正在使用上传类上传图片。但是我上传的图片的存储位置是:http://www.mysite.com/uploads/ 此文件夹的绝对路径是:c:\wamp\www\mysite\uploads\ 应用
大家好 我想在codeigniter上下文中提供一些静态html页面。我不想绕过base_url中的index.php文件。 但是,当我使用对HTML文件的调用时,它不会显示404错误页面。 感谢已经
我一直想知道在模型中以 OO 风格编写代码的正确方法是什么。当然,您可以拥有一个从数据库中检索数据然后映射到模型级变量的函数。但是,当您在模型中有其他功能试图从 BD 获取其他数据时,这种方法会变得违
之前所有的 JOIN 尝试都给我留下了填充结果的 id、标题键的光盘或项目数据(可能发生了冲突)。 所以我有: item table fields: id, title disc table fiel
假设我在 Controller 中有一个名为 的方法 book($chapter,$page); 其中 $chapter 和 $page 必须是整数。要访问该方法,URI 将如下所示 book/cha
我有一个用户可以注册的页面。他在此过程中上传了个人资料照片。我想限制大小,但除了 $config['maxsize'] 之外,并没有太多强调 codeigniter 文档。我尝试了以下但我没有收到任何
我需要将 CodeIgniter 设置为真正的多语言网站。我已经搜索过,但找不到解决方案。 我已经测试了这种方法,但它不起作用。 ( http://codeigniter.com/wiki/Categ
CodeIgniter 中的常量是否可以用于整个站点中的重复文本(比如元标记和元描述)?就像是: define('METADESCRIPTION', 'This is my site'); 然后将 M
我已经在 CodeIgniter 的路由器中写了这个。 $route['companyname'] = "/profile/1"; 这工作正常,但是当我在 URL 中键入“公司名称”时,它不起作用。这
我正在开始我的第一个 CodeIgniter 项目,并希望在开始之前获得一些建议。我对 Controller 和模型的名称如何工作感到有些困惑。 如果我希望我公司页面的网址为 http://examp
可以在CodeIgniter Active Record中使用多个INSERT记录,而无需for,foreach等。 我当前的代码: foreach($tags as $tag) { $tag
SELECT * FROM certs WHERE id NOT IN (SELECT id_cer FROM revokace); 如何在 CodeIgniter 事件记录中编写上述 select
wkhtmltopdf 听起来是一个很好的解决方案...问题是 exec 上没有任何反应 shell_exec("c:\wkhtmltopdf.exe","http://www.google.com
我当前的CodeIgniter有点问题。我有一个带有“页面” Controller 的CI安装程序,该 Controller 可从/ views加载静态文件,但它最多只能包含1个子文件夹,而我正在向其
有一段时间,我一直在处理分页类中的一个问题。 问题是,除了第 1 页的链接之外,所有分页的内容都可以。 所有链接都是这样的: example.com/method/page/2 example.com
我想对请求进行一些预处理和后处理,例如处理身份验证、加载上下文数据、性能时间等等。来自 Django 的概念是 MIDDLEWARE_CLASSES这让我可以在各个阶段处理请求:https://doc
我想通过创建自己的库和配置文件在 CodeIgniter 中生成全局变量。这就是我在我的库文件中编写的,比如说 globalvars.php。我把它放在/application/libraries 中
我有以下分页样式 Previous Page
我是一名优秀的程序员,十分优秀!