View Single Post
  #1  
Old 6th October 2018, 15:55
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Talking Mindless Any Help
Code:
class htmlout {
  public $name;

     function __construct($name) {
         $this->name = $name; 
     }     
}

$html = new htmlout($title);
echo $html->name;
would you be interested testing it?
Code:
$this->name;
echo $this->name;
was gonna post it on tbdev sections but thought of you man tbh.
should work like this >

Code:
?><title><?php echo $html->name;?></title><?php
echo "<link rel='stylesheet'
Code:
$htmlout->template;

Last edited by BamBam0077; 6th October 2018 at 16:19. Reason: template idea :)
Reply With Quote