google_forms/application/controllers/New_form.php

36 lines
1.1 KiB
PHP
Raw Normal View History

2024-07-12 11:50:41 +00:00
<?php
class New_form extends CI_Controller
{
public function create_form()
{
2024-07-19 10:46:18 +00:00
if (!$this->session->userdata('logged_in')) {
// If not logged in, redirect to login page
redirect('users/login');
}
2024-07-12 11:50:41 +00:00
$data['title'] = 'Form Details';
$this->form_validation->set_rules('title', 'Title', 'required');
$this->form_validation->set_rules('description', 'Description', 'required');
if ($this->form_validation->run() === FALSE) {
$this->load->view('templates/header');
$this->load->view('templates/form_title',$data);
$this->load->view('templates/footer');
} else {
// $enc_password = md5($this->input->post('password'));
$this->load->model('create_model');
// $user_id = $this->session->userdata('user_id');
$this->create_model->details();
// $this->user_model->register();
// $this->session->set_flashdata('user_registered', 'You are now registered and can log in');
redirect('home/design_form');
}
}
}
?>