View Single Post
  #4  
Old 03-01-2016, 08:53 PM
FounderSim FounderSim is offline
Member
 
Join Date: Sep 2014
Posts: 65
Gender: Male
Credits: 7,865
FounderSim is on a distinguished road
Default

It seems like the problem lies in the class_input.php file

In class_userprofile.php I got this line

Code:
$mysidia->input->get("page")
In the class_input.php file I got this:

Code:
    /**
     * The get method, returns a user input var stored in Input::$get property.
	 * @param String  $key
     * @access public
     * @return Object
     */
    public function get($key = ""){
		echo $key;
        if(empty($key) and $this->get instanceof HashMap)
		{
			return $this->get;
		}			
		else
		{
		echo ' =  ' . $this->get->get(new String($key)) . "<BR>";
		return $this->get->get(new String($key));
		}
    }

Output:
Quote:
frontcontroller = index
appcontroller = profile
user = siminator
frontcontroller = index
appcontroller = profile
appcontroller = profile
appcontroller = profile
frontcontroller = index
appcontroller = profile
user = siminator
user = siminator
user = siminator
user = siminator
user = siminator
user = siminator
user = siminator
user = siminator
user = siminator
page =
user = siminator
frontcontroller = index
appcontroller = profile
@Hall of Famer

Page is always blank... I must be missing something.
__________________
Reply With Quote