Welcome Guest, Not a member yet? Register   Sign In
How to load view if function not exists?
#6

[eluser]John_Betong[/eluser]
[quote author="codeworxx" date="1257360577"]Thanks all for your replys. I will read the #remap Infos.

@jedd:
The "Problem" is, that i create a Webshop System. The URLs are designed as follows:

Categories e.g.:
category/systems (pc systems)
category/memory (ram, hd, ....)
and so on

then i have
Listings e.g.:
listings/systems/hewlettpackard
listings/systems/acer

and so on...

The Categories and Listings are created dynamically.

Also in Future

search/my search phrase

....
....

Greetings,
Sascha[/quote]
 
I have a similar problem and have found one way that works for me Smile

Try this:
Code:
// ./config/routes.php

  $routes['category/systems/:any'] = 'category/systems';
  $routes['category/memory/:any']   = 'category/memory';
  $routes['listing/systems/:any']   = 'listings';



// ./controllers/category.php

function systems()
{
  $type = $this->uri->segment(2);
  $data['type'] = $this->model_type->get_relevant($type); // maybe return NULL
  ...
  ...
  $page = $this->load->view('the_types', $data);
}
 
 
 





}


Messages In This Thread
How to load view if function not exists? - by El Forum - 11-02-2009, 02:31 PM
How to load view if function not exists? - by El Forum - 11-02-2009, 03:58 PM
How to load view if function not exists? - by El Forum - 11-02-2009, 04:05 PM
How to load view if function not exists? - by El Forum - 11-02-2009, 04:32 PM
How to load view if function not exists? - by El Forum - 11-04-2009, 06:49 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 09:24 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 09:45 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 10:08 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 10:23 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 10:38 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 10:50 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 10:55 AM
How to load view if function not exists? - by El Forum - 11-04-2009, 06:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB