Mysql (Chrome) veri satırı eklendikten sonra boş satır ekler

0 Cevap php

Seems to be a browser issue, as in firefox it is working fine but not in chrome.

Neden ben bir mysql db tabloya veri eklemek için benim php formu göndermek, o zaman tablo kontrol olmasıdır. Ben de hiçbir şey içinde veri ve aynı zamanda ekstra bir satır ile yeni oluşturulan satır görmek?

My controller:

    function Admin() {
       parent::Controller();

       $this->dx_auth->check_uri_permissions();

       $this->load->model('alert_model');
       $data['rows'] = $this->alert_model->check($num_results=4);
       $this->load->view('includes/header', $data);
    }

    function index() {
       $this->load->view('admin/notifications');
       $this->load->view('includes/footer');
    }

    function sendalert() {
       $info = array(
           'msg_author'  => $this->input->post('msg_author'),
           'msg_date'    => $this->input->post('msg_date'),
           'msg_subject' => $this->input->post('msg_subject'),
           'msg_content' => $this->input->post('msg_content')
       );

       $this->send_notification->send($info);
       $this->index();
    }

My Model:

    function send($info) {
       $this->db->insert('msg', $info);
       return;
    }

My View:

<?php echo form_open('admin/sendalert'); ?>

    <label for="msg_subject">Subject</label>
    <input type="text" name="msg_subject" id="msg_subject" />

    <label for="msg_date">Date</label>
    <input type="text" name="msg_date" id="msg_date" />

    <label for="msg_author">From</label>
    <input type="text" name="msg_author" id="msg_author" />

    <label for="msg_content">Content</label>
    <input type="text" name="msg_content" id="msg_content" />

    <input type="submit" value="submit" />

<?php echo form_close(); ?>

Teşekkürler

0 Cevap