Returning Multiple variables

I would like to return 4-5 variables, Title, Description, Content, and Author, more, for my code for testing I have this.

But it isnt working. Please Help Thanks.

[php] return $this->Title = ‘Title’;
return $this->Author = ‘author’;
return $this->Keywords =‘test’;
return $this->Description = ‘description’;
return $this->Content = $page;
[/php]

[php]$this->Title = ‘Title’;
$this->Author = ‘author’;
$this->Keywords =‘test’;
$this->Description = ‘description’;
$this->Content = $page;

return $this;[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service