21 January 2021

How to get values from form in Codeigniter?

Get values from form in Codeigniter

 if ($this->input->post('submit')==true) {
      $data['username']=$this->input->post('username'); // $_POST['username']
      $data['phone']=$this->input->get('phone'); // $_GET['phone']
    
 }

No comments:

Post a Comment

How to download/create content in doc from website by adding code in chrome console?

 Download/Create content in doc from website by adding code in chrome console function exportHTMLtoDoc(elementId, fileName = 'document...