【发布时间】:2014-10-17 04:58:34
【问题描述】:
我是 php 新手。我正在做一个关于在线巴士票系统的项目。
在系统的一部分中,我想更新一个数据库表。起初我想显示我在索引方法中完成的表的所有行。 When a row is selected it's attribute value(which is primary key) is caught in 'edit schedule' method.该值保存在类变量 attr_value 中。在那里我调用另一个视图来接收更新的信息。从该视图中,信息按表单传递给“e_schedules”方法。但是在那里类变量 attr_value 的值被重置为默认值。但我希望保存在“edit_schedule”方法中的值。我该怎么做?
控制器类
<?php
//$flag_edit_schedule = 1 ;
class edit_schedule extends CI_Controller {
//public $flag_edit_schedule = 1 ;
public $attr_value=1;
protected $table= 'schedule';
function index() {
$data= array();
if($query = $this->database_model->get_records($this->table)){
$data['records']= $query;
}
$this->load->view('select_schedule_view',$data) ;
}
function e_schedules(){
//$table='schedule';
$attribute_name='schedule_no';
$attribute_value=$this->attr_value;
echo $this->attr_value;
$data = array(
'schedule_no' => $this->attr_value,
'bus_no' => $this->input->post('bus_no'),
'route_no' => $this->input->post('route_no'),
'start_time' => $this->input->post('start_time')
);
//$this->database_model->update_record($this->table,$attribute_name,$attribute_value,$data);
//redirect('/admin/admin_home');
echo $attribute_name;
}
function edit_schedules() {
$this->attr_value=$this->uri->segment(4) ;
echo $this->attr_value;
$this->load->view('edit_schedule_view');
}
}
select_schedule_view
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title></title>
<style>
table, th, td {
padding: 5px;
}
th,td {
text-align: center;
}
table {
border-spacing: 15px;
}
</style>
</head>
<body>
<h2>Select Schedule </h2>
<table style="width:75%">
<tr>
<th> bus_no </th>
<th> route_no </th>
<th> time </th>
</tr>
<?php if(isset($records)) : foreach($records as $rows) : ?>
<tr>
<td><?php echo anchor("admin/edit_schedule/edit_schedules/$rows->schedule_no", $rows->bus_no); ?></td>
<td> <?php echo $rows->route_no?> </td>
<td> <?php echo $rows->start_time ?></td>
</tr>
<?php endforeach; ?>
<?php else: ?>
<h2> No records were returned </h2>
<?php endif; ?>
</table>
</body>
edit_schedule_view
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<h2> Edit Route </h2>
<?php echo form_open('admin/edit_schedule/e_schedules'); ?>
<p>
<label for="bus_no"> Enter Bus Number:</label>
<input type="text" name="bus_no" id="bus_no" />
</p>
<p>
<label for="route_no"> Enter Route Number:</label>
<input type="text" name="route_no" id="route_no" />
</p>
<p>
<label for="start_time"> Start Time:</label>
<input type="text" name="start_time" id="start_time" />
</p>
<p>
<input type="submit" value="Edit" />
</p>
<?php echo form_close(); ?>
<hr />
</body>
这是我的第一篇文章。通过滚动其他问题和答案,我已经做了很多。但现在我需要快速帮助,因为我的时间不多了。
【问题讨论】:
-
您到底想做什么?您是否正在尝试执行编辑操作?
-
是的。我想对表格进行编辑操作。
-
为什么你被这个 $attr_value 占用了?我认为这不是必需的。
-
将主键从“edit_schedule”传递给“e_schedule”。还有其他人可以执行此操作吗?
-
您必须从您的edit_schedule 数据库中的id 获取数据并将其传递给您的edit_schedule_view。比您能够在 e_schedule 中取回您的主键。
标签: php codeigniter