Junaid Yousaf Lodhi
Junaid Yousaf Lodhi

Reputation: 29

Code Igniter Model unable to use url->segment

this error arises when I try to get url segement

Severity: Notice

Message: Undefined property: Site::$url

Filename: core/Model.php

This is the code of model class Modeland this is function in controller Controller

View

Upvotes: 0

Views: 52

Answers (1)

cssBlaster21895
cssBlaster21895

Reputation: 3710

Replace url with uri

$this->uri->segment(3);

Upvotes: 2

Related Questions