<?php

class Model
{
    public $h1string;
    public $pstring;
    public $linkstring;
    public $linktitle;
    public $myifsrc;
    public $myifdisplay;
 
    public function __construct(){
        $this->h1string = "Hope you like my heading for PHP MVC Primer Tutorial";
        $this->pstring = "This paragraph has a rock, rather than rocking per se.";
        $this->linkstring = "Would you please consider clicking here for iframe ... pleeeeease!";
        $this->linktitle = "Please click here for iframe usage.";
        $this->myifsrc = "../../wordpress/";
        $this->myifdisplay = "none";
    }
 
}
?>

