I am very new to PHP , but i want to show a html page and handle it with and .php file in codeigniter, How can i do it. Example could be like this : http://www.w3schools.com/php/showphp.asp?filename=demo_form_post
I tried to do the same but in controller if i try to run the html file it works fine but as i click on submit and try to fetch values it give my errors.
i do: 1. Made 2 file in view namely: Test.html and Test_Values.php in Test.html i keep : the code as mentioned in w3 link and in Test_Value.php I wrote the logic.
2.In controller i calls : $this->load->view("Test.html"); it shows me my html page but as i click on the submit button it says 404 page not found.
Please help me. What am i doing wrong??