|
|
|
สอบถามครับ คือ ผมบันทึกข้อมูลลงฐานแล้ว มันชอบสร้างขึ้นมาเอง ผมต้องเข้าไป ตั่งค่าหรือ ใส่โค้ดตรงไหนครับ |
|
|
|
|
|
|
|
เอา Code มาดูก่อน จึ่งจะหาวิธีช่วยได้
|
|
|
|
|
Date :
2017-09-06 16:08:18 |
By :
Bouasavanh HararRock |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูโค๊ดบันทึกหน่อยครับ
Code (PHP)
$username = $this->input->post('username');
$password = $this->input->post('password');
$name = $this->input->post('name');
$data = array(
'username' => $username
, 'password' => md5($password)
, 'password_format' => $password
, 'name ' => $name
);
$this->db->insert('users', $data);
แล้วที่ id มันไม่ เรียง 1 2 3 ไปเรื่อยๆ ก็อาจเพราะไอดีนั้นใช้ไปแล้ว
แล้วถูกลบไปแล้ว มันก็รัน auto ของมันไปเรื่อยๆ
|
|
|
|
|
Date :
2017-09-06 16:08:25 |
By :
Pong Thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โฮ่ๆๆ เขียนด้วย codeigniter คุณต้องเข้าใจเรื่อง html, javascript แบบเบสิกแล้วนะครับ
ถ้าไม่มีพื้นฐาน php html javascript คุณจะเขียนโปรแกรมที่อ้างอิง object ต่างๆได้ยังไง
----------------------------------------------
ในส่วนของ html จะมี javascript อยู่ด้วย
คงไม่ต้องถามนะครับว่า html อยู่ตรงไหน แก้ยังไง
ถ้าถามก็ตอบได้อย่างเดียวว่า ไปเรียนพื้นฐาน 3 โปรแกรม มาใหม่ (php, html, javascript)
แล้วค่อยมาใช้ codeigniter
|
|
|
|
|
Date :
2017-09-07 11:31:43 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองไปปรับดูนะครับ ผมไม่ได้ลอง
Code (PHP)
$username = $this->input->post('username');
$password = $this->input->post('password');
$name = $this->input->post('name');
$data = array(
'username' => $username
, 'password' => $password
, 'name ' => $name
);
$result=$this->db->insert('users', $data);
if($result){
$data['msg_success'] = "บันทึกข้อมูลเรียบร้อยแล้ว";
}else{
$data['msg_error'] = "ไม่สามารถบันทึกข้อมูลได้";
}
$this->load->view('register_view',$data);
//register_view.php
<?php
if (isset($msg_success)) {
?>
<div class="alert alert-success" id="msgSuc">
<strong>สำเร็จ !!</strong> <span class="alert-link"><?php echo $msg_success; ?></span>
</div>
<?php } ?>
<?php
if (isset($msg_error)) {
?>
<div class="alert alert-danger" id="msgSuc">
<strong>ผิดพลาด !!</strong> <span class="alert-link"><?php echo $msg_error; ?></span>
</div>
<?php } ?>
|
ประวัติการแก้ไข 2017-09-08 10:56:31
|
|
|
|
Date :
2017-09-08 10:55:54 |
By :
Pong Thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อย่าลืมกำหนด field property not allow null ไว้ด้วย จะได้ไม่ insert ทุกข้อมูล
|
|
|
|
|
Date :
2017-09-10 20:25:30 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|