Welcome Guest, Not a member yet? Register   Sign In
A PHP Error was encountered
#2

it can't find $property->pname in edit_property.php


$property was passed to the view, so you'll need to access it as $pname


If you want it to be $property->pname you need to do this in your controller:

PHP Code:
$data['property'] = $this->property->find_property($properties_id);
   
$this->load->view('admin/edit_property',$data); 


see the docs: https://codeigniter.com/user_guide/gener...o-the-view
Reply


Messages In This Thread
A PHP Error was encountered - by Pankaj Kumar - 05-29-2018, 04:39 AM
RE: A PHP Error was encountered - by enlivenapp - 05-29-2018, 06:35 AM
RE: A PHP Error was encountered - by Pankaj Kumar - 05-31-2018, 01:31 AM
RE: A PHP Error was encountered - by Pankaj Kumar - 06-06-2018, 03:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB