Welcome Guest, Not a member yet? Register   Sign In
An uncaught Exception was encountered
#2

Like the error says, you aren't passing an $id to Employee::view_profile().
If you want to remove that error message and let the function die, you can change it into the following and pass a default value.

PHP Code:
public function view_profile($id 0)
{
 
  if ( !$id )
 
  {
 
      exit;
 
  }
 
  // your code here

Reply


Messages In This Thread
RE: An uncaught Exception was encountered - by jreklund - 03-26-2018, 07:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB