06-16-2011, 01:27 PM
[eluser]brucebat[/eluser]
Hi all,
I have built my template for codeigniter which consists of:
controller
=================
site_controller.php (contains index, blog, submit form, retrieve form, login, logout functions)
template structure
==================
template_view.php
header_view.php
nav_view.php
footer_view.php
widgets_view.php
===================
fillers for template:
home.php
blog.php
submit_data.php
retrieve_data.php
login.php
===================
models
===================
blog_model.php
submit_model.php
retrieve_model.php
---------------------------------------
My question is how do I call my other functions w from my navigation menu on my website.
http://i.imgur.com/Eo9it.jpg
I have tried this but it causes my page to stop displaying
I think I have missed out on something but I have searched and with my ignorance of the terminology and dogma of this system; have not been able to find an answer for what I need to do to get this crucial part of my site working.
Perhaps a point in the right direction would be beneficial in my learning of this framework rather than a straight out answer ?
Thankyou for your time
!
Hi all,
I have built my template for codeigniter which consists of:
controller
=================
site_controller.php (contains index, blog, submit form, retrieve form, login, logout functions)
template structure
==================
template_view.php
header_view.php
nav_view.php
footer_view.php
widgets_view.php
===================
fillers for template:
home.php
blog.php
submit_data.php
retrieve_data.php
login.php
===================
models
===================
blog_model.php
submit_model.php
retrieve_model.php
---------------------------------------
My question is how do I call my other functions w from my navigation menu on my website.
http://i.imgur.com/Eo9it.jpg
I have tried this but it causes my page to stop displaying
Code:
<a >load->controller('site', $page); ?>">Login</a></li>
I think I have missed out on something but I have searched and with my ignorance of the terminology and dogma of this system; have not been able to find an answer for what I need to do to get this crucial part of my site working.
Perhaps a point in the right direction would be beneficial in my learning of this framework rather than a straight out answer ?
Thankyou for your time
