コード例 #1
0
 public function titleMaker()
 {
     //check if id is set
     if (isset($_GET['id'])) {
         //if id is set, set the title to the discount title
         $id = $_GET['id'];
         $discount = new Discount();
         $title = $discount->getTitle($id);
         return $title['title'];
     }
     return isset($_GET['page']) ? ucfirst($_GET['page']) : "Homepage";
 }