- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了这个问题,但我不知道如何解决。我有一个与数据库交互的项目,我制作了一个用于交互的 CRUD html 表,这意味着我在相关数据库中有 15 个表,我想要插入、删除和编辑记录,所以这是我的代码。我的问题是:我如何知道何时将这些值插入到该表中,以将其插入到数据库中的同一个表中,我真的不知道。
这是我的 Controller :
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
类 Main 扩展 CI_Controller {
function index($some)
{
$this->load->model('main_model');
switch ($some) {
case 'class':
$data['fields'] = array(
'ClassID' => 'class id',
'ClassNum' => 'class name',
'ClassSize' => 'class size',
'Floor' => 'floor'
);
$data['tables'] = $this->main_model->getClass();
break;
case 'group':
$data['fields'] = array(
'GroupID' => 'id',
'GroupNum' => 'group name',
'SectionNum' => 'section',
'YearNum' => 'year',
'ProfNameAra' => 'proffetion name'
);
$data['tables'] = $this->main_model->getGroupSection();
break;
case 'hole':
$data['fields'] = array(
'HoleID' => 'id',
'HoleNum' => 'hole name',
'HoleSize' => 'hole size',
'Floor' => 'floor'
);
$data['tables'] = $this->main_model->getHole();
break;
case 'lab':
$data['fields'] = array(
'LabID' => 'id',
'LabName' => 'lab_name',
'LabSize' => 'lab_size',
'Floor' => 'floor'
);
$data['tables'] = $this->main_model->getLab();
break;
case 'lecture':
$data['fields'] = array(
'LectureID' => 'id',
'SubjectAra' => 'subject name',
'Is_Lecture' => 'yes/no',
'YearNum' => 'year',
'ProfNameAra' => 'proffission',
'SubjectSemester' => 'semester'
);
$data['tables'] = $this->main_model->getLectureSubject();
break;
case 'prof':
$data['fields'] = array(
'ProfID' => 'id',
'ProfNameAra' => 'prof name'
);
$data['tables'] = $this->main_model->getProf();
break;
case 'section':
$data['fields'] = array(
'SectionID' => 'id',
'SectionNum' => 'section name',
'YearNum' => 'year',
'ProfNameAra' => 'proffission'
);
$data['tables'] = $this->main_model->getSection();
break;
case 'subgroup':
$data['fields'] = array(
'SubgroupID' => 'id',
'SubgroupNum' => 'section name',
'GroupNum' => 'group name',
'SectionNum' => 'section name'
);
$data['tables'] = $this->main_model->getSubgroup();
break;
case 'subject':
$data['fields'] = array(
'SubjectID' => 'id',
'SubjectAra' => 'subject name',
'Is_Lecture' => ' yes/no',
'YearNum' => 'year',
'ProfNameAra' => 'proffission'
);
$data['tables'] = $this->main_model->getSubject();
break;
case 'teacher':
$data['fields'] = array(
'TeacherID' => 'id',
'TeacherName' => 'teacher name'
);
$data['tables'] = $this->main_model->getTeacher();
break;
case 'timetable':
$data['fields'] = array(
'TimetableID' => 'id',
'YearDate' => 'date',
'Semester' => 'semester',
'YearNum' => 'year',
'ProfNameAra' => 'proffission',
'SectionNum' => 'sectin name'
);
$data['tables'] = $this->main_model->getTimetable();
break;
case 'timetabledetail':
$data['fields'] = array(
'DetailID' => 'id',
'Day' => 'day',
'Period' => 'period',
'YearDate' => 'year date',
'Semester' => 'semester',
'YearNum' => 'year',
'ProfNameAra' => 'proffission',
'SectionNum' => 'section name',
'GroupNum' => 'group name',
'SubgroupNum' => 'subgroup name',
'LabName' => 'lab name',
'HoleNum' => 'hole name',
'ClassNum' => 'class name',
'TeacherName' => 'teacher name',
'SubjectAra' => 'subject name'
);
$data['tables'] = $this->main_model->getTimetabledetail();
break;
case 'year':
$data['fields'] = array(
'YearID' => 'id',
'YearNum' => 'year'
);
$data['tables'] = $this->main_model->getYear();
break;
case 'year_prof':
$data['fields'] = array(
'YearNum' => 'year',
'ProfNameAra' => 'proffission'
);
$data['tables'] = $this->main_model->getYearProf();
break;
}
$data['main_content'] = 'main';
$this->load->view('includes/template', $data);
}
}
这是我的观点:
<?php echo form_open('main') ?>
<table id="dg" title="Andro-CH Table" class="easyui-datagrid" style="width:700px;height:250px"
url="get_users.php"
toolbar="#toolbar" pagination="true"
rownumbers="true" fitColumns="true" singleSelect="true">
<thead>
<tr>
<?php foreach ($fields as $field_name => $field_display): ?>
<th field="<?php echo $field_name?>" width="50"> <?php echo $field_display; ?> </th>
<?php endforeach; ?>
</tr>
</thead>
<tbody>
<?php foreach ($tables as $table): ?>
<tr>
<?php foreach ($fields as $field_name => $field_display): ?>
<td>
<?php echo $table->$field_name; ?>
</td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<div id="toolbar">
<a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="newUser()">New User</a>
<a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-edit" plain="true" onclick="editUser()">Edit User</a>
<a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-remove" plain="true" onclick="destroyUser()">Remove User</a>
</div>
<div id="dlg" class="easyui-dialog" style="width:400px;height:280px;padding:10px 20px" closed="true" buttons="#dlg-buttons">
<div class="ftitle">Table Information</div>
<div class="fitem">
<?php foreach ($fields as $field_name => $field_display): ?>
<?php echo form_label("$field_display:"); ?>
<?php echo form_input("$field_name", '', 'class="easyui-validatebox" required="true"'); ?>
<br>
<?php endforeach; ?>
</div>
</div>
<div id="dlg-buttons">
<a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-ok" onclick="saveUser()">Save</a>
<a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-cancel" onclick="javascript:$('#dlg').dialog('close')">Cancel</a>
</div>
<script type="text/javascript">
var url;
function newUser(){
$('#dlg').dialog('open').dialog('setTitle','New User');
$('#fm').form('clear');
url = 'save_user.php';
}
function editUser(){
var row = $('#dg').datagrid('getSelected');
if (row){
$('#dlg').dialog('open').dialog('setTitle','Edit User');
$('#fm').form('load',row);
url = 'update_user.php?id='+row.id;
}
}
function saveUser(){
$('#fm').form('submit',{
url: url,
onSubmit: function(){
return $(this).form('validate');
},
success: function(result){
var result = eval('('+result+')');
if (result.errorMsg){
$.messager.show({
title: 'Error',
msg: result.errorMsg
});
} else {
$('#dlg').dialog('close'); // close the dialog
$('#dg').datagrid('reload'); // reload the user data
}
}
});
}
function destroyUser(){
var row = $('#dg').datagrid('getSelected');
if (row){
$.messager.confirm('Confirm','Are you sure you want to destroy this user?',function(r){
if (r){
$.post('destroy_user.php',{id:row.id},function(result){
if (result.success){
$('#dg').datagrid('reload'); // reload the user data
} else {
$.messager.show({ // show error message
title: 'Error',
msg: result.errorMsg
});
}
},'json');
}
});
}
}
</script>
<style type="text/css">
#fm{
margin:0;
padding:10px 30px;
}
.ftitle{
font-size:14px;
font-weight:bold;
padding:5px 0;
margin-bottom:10px;
border-bottom:1px solid #ccc;
}
.fitem{
margin-bottom:5px;
}
.fitem label{
display:inline-block;
width:80px;
}
</style>
这是我的模型,尚未完成
<?php
class Main_model extends CI_Model {
function getClass() {
$query = $this->db->select('*')
->from('class')
->get();
return $query->result();
}
function getGroup() {
$query = $this->db->select('*')
->from('group')
->get();
return $query->result();
}
function getGroupSection() {
$q = $this->db->select('group.GroupID, group.GroupNum, section.SectionNum,year.YearNum,prof.ProfNameAra')
->from('group')
->join('section', 'group.Section_id = section.SectionID')
->join('year', 'year.YearID = section.Year_id')
->join('prof', 'section.Prof_id = prof.ProfID');
return $q->get()->result();
}
function getHole() {
$query = $this->db->select('*')
->from('hole')
->get();
return $query->result();
}
function getLab() {
$query = $this->db->select('*')
->from('lab')
->get();
return $query->result();
}
function getLecture() {
$query = $this->db->select()
->from('lecture')
->get();
return $query->result();
}
function getLectureSubject() {
$q = $this->db->select('lecture.LectureID, subject.SubjectAra, subject.Is_Lecture, year.YearNum, prof.ProfNameAra, subject.SubjectSemester')
->from('lecture')
->join('subject', 'lecture.Subject_id = subject.SubjectID')
->join('prof', 'prof.ProfID = subject.Prof_id')
->join('year','year.YearID = subject.Year_id');
return $q->get()->result();
}
function getProf() {
$query = $this->db->select('*')
->from('prof')
->get();
return $query->result();
}
function getSection() {
$query = $this->db->select('section.SectionID, section.SectionNum, year.YearNum, prof.ProfNameAra')
->from('section')
->join('year', 'section.Year_id = year.YearID')
->join('prof', 'section.Prof_id = prof.ProfID')
->get();
return $query->result();
}
function getSubgroup() {
$query = $this->db->select('subgroup.SubgroupID, subgroup.SubgroupNum, group.GroupNum, section.SectionNum')
->from('subgroup')
->join('group', 'subgroup.Group_id = group.GroupID')
->join('section', 'group.Section_id = section.SectionID')
->get();
return $query->result();
}
function getSubject() {
$query = $this->db->select('subject.SubjectID,subject.SubjectAra,subject.SubjectSemester,subject.Is_Lecture,
year.YearNum,prof.ProfNameAra')
->from('subject')
->join('year', 'year.YearID = subject.Year_id')
->join('prof', 'prof.ProfID = subject.Prof_id')
->get();
return $query->result();
}
function getTeacher() {
$query = $this->db->select('*')
->from('teacher')
->get();
return $query->result();
}
function getTimetableDetail() {
$query = $this->db->select('DetailID,Day,Period,
timetable.TimetableID,timetable.YearDate,timetable.Semester,
year.YearNum,
prof.ProfNameAra,
section.SectionNum,
group.GroupNum,
subgroup.SubgroupNum,
lab.LabName,
hole.HoleNum,
class.ClassNum,
teacher.TeacherName,
subject.SubjectAra')
->from('timetabledetail')
->join('timetable','Timetable_id = TimetableID')
->join('year', 'timetable.Year_id = year.YearID')
->join('prof', 'prof.ProfID = timetable.Prof_id')
->join('section', 'section.SectionID = timetable.Section_id')
->join('group', 'GroupID = Group_id')
->join('subgroup','SubgroupID = Subgroup_id')
->join('lab','LabID = Lab_id')
->join('hole', 'HoleID =Hole_id')
->join('class','ClassID = Class_id')
->join('teacher','TeacherID = Teacher_id')
->join('subject','SubjectID = Subject_id')
->get();
return $query->result();
}
function getTimetable() {
$query = $this->db->select('timetable.TimetableID,timetable.YearDate,timetable.Semester,
year.YearNum,
prof.ProfNameAra,
section.SectionNum')
->from('timetable')
->join('year', 'timetable.Year_id = year.YearID')
->join('prof', 'prof.ProfID = timetable.Prof_id')
->join('section', 'section.SectionID = timetable.Section_id')
->get();
return $query->result();
}
function getYear() {
$query = $this->db->select('*')
->from('year')
->get();
return $query->result();
}
function getYearProf()
{
$q = $this->db->select('year.YearNum, prof.ProfNameAra')
->from('year_prof')
->join('year', 'year_prof.Year_id = year.YearID')
->join('prof', 'year_prof.Prof_id = prof.ProfID')
->get();
return $q->result();
}
}
最佳答案
是否也发送数据类型?
...
case 'case1':
$data['table'] = $result..
$data['table_type'] = 'case1';
break;
case 'case2':
$data['table'] = $result..
$data['table_type'] = 'case2';
break;
...
然后,您可以在 View 中将 table_type
变量放在提交按钮上:
<input type="submit" name="<?=$table_type;?>" value="update">
或隐藏区域
<input type="hidden" name="<?=$table_type;?>" value="TRUE">
然后在您接收POST数据的 Controller 上,您可以通过以下方式验证它:
if($this->input->post('case1'))
{
//for case 1
//insert/update to case1 table
}elseif($this->input->post('case2'){
//for case 2
//insert/update to case2 table
}else{
//default
}
这只是一个简单的,您可以添加更多安全性或使 POST 值的检查更加动态。
关于php - 我如何知道以表单传递的值或数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23893386/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 9年前关闭。 Improve this que
我有一堆 php 脚本计划在 CentOS 机器上的 cron 中每隔几分钟运行一次。我希望每个脚本在启动时自我检查它的前一个实例是否仍在运行,如果是则停止。 最佳答案 我这样做是为了管理任务并确保它
是否有 bash 命令、程序或 libusb 函数(尽管我没有找到)来指示 USB 设备的 OUT 或 IN 端点是什么? 例如,libusb_interface_descriptor(来自 libu
我如何知道 NSTextField 何时成为第一响应者(即当用户单击它来激活它时,但在他们开始输入之前)。我尝试了 controlTextDidBeginEditing 但直到用户键入第一个字符后才会
我怎么知道我的代码何时完成循环?完成后我还得再运行一些代码,但只有当我在那里写的所有东西都完成后它才能运行。 obj.data.forEach(function(collection) {
我正在使用音频标签,我希望它能计算播放了多少次。 我的代码是这样的: ; ; ; 然后在一个javascript文件中 Var n=0; function doing(onplaying)
我正在尝试向 Package-Explorer 的项目上下文菜单添加一个子菜单。但是,我找不到该菜单的 menuid。 所以我的问题是如何在 eclipse 中找到 menuid? 非常感谢您的帮助。
我有一个名为“下一步”的按钮,它存在于几个 asp.net 页面中。实际上它是在用户控件中。单击“下一步”时,它会调用 JavaScript 中的函数 CheckServicesAndStates。我
我正在尝试在 Visual Studio 中使用 C++ 以纳秒为单位计算耗时。我做了一些测试,结果总是以 00 结尾。这是否意味着我的处理器(Ryzen 7-1800X)不支持 ~1 纳秒的分辨率,
我有一个自定义 ListView ,其中包含一些元素和一个复选框。当我点击一个按钮时。我想知道已检查的元素的位置。下面是我的代码 public class Results extends ListAc
如何在使用 J2ME 编写的应用程序中获取网络运营商名称? 我最近正在尝试在 Nokia s40 上开发一个应用程序,它应该具有对特定网络运营商的独占访问权限。有没有这样的API或库? 最佳答案 没有
我使用服务器客户端组件,当在此组件的 TransferFile 事件中接收文件时,我使用警报消息组件。所以我希望,如果用户单击警报消息,程序将继续执行 TransferFile 事件中的代码,以在单击
如果我创建一个类A具有一些属性,例如 a, b, c我创建对象 A x1; A x2; A x3; ... A xN 。有没有办法在同一个类中创建一个方法来检索我创建的所有对象?我想创建类似 stat
我正在制作一个应用程序,其中包含相同布局的 81 个按钮。它们都被称为我创建的名为“Tile”的对象。问题是这些图 block 存储在数组中,因此我需要知道以 int 格式单击了哪个按钮才能调用图 b
UIProgressView有这个setProgress:animated: API。 有没有办法确切知道动画何时停止? 我的意思是这样的? [myProgress setProgress:0.8f
我正在使用两个 jQuery 队列,我希望其中一个队列在另一个队列完成后出队。我怎么知道第一个是否完成?我应该使用第三个队列吗?! 这是我所拥有的: var $q = $({}); $q.que
jQuery 中有没有一种方法可以知道是否至少有一个复选框已被选中? 我有一个包含很多复选框的表单,每个复选框都不同。 我需要一种 jQuery 的方式来表达这样的内容,这就是逻辑: If at le
给定 2 个选择 100 50 100 在这两种情况下,我都想在 .example 中获取数字,使用相同的选择器或者以某种方式知道 .no-text 和 之间的区别。带文字 执行
我在我的应用程序中使用 System.ComponentModel.BindingList 作为 DataGridView.DataSource。该列表非常大,需要几秒钟才能绘制到 DataGridV
我想知道用户在 Android 中选择的默认键盘。我知道我可以使用 InputMethodManager 访问已启用的输入法列表,但我想知道用户当前使用的是哪一个。 到目前为止,我已经尝试获取当前的输
我是一名优秀的程序员,十分优秀!