示例#1
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 22.11.2015
 * Time: 15:02
 */
include_once $_SERVER['DOCUMENT_ROOT'] . '/Controllers/SubdescriptionController.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/Model/SubdescriptionModel.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/View/SubdescriptionView.php';
//initiate the triad
$model = new SubdescriptionModel();
//It is important that the controller and the view share the model
$controller = new SubdescriptionController($model);
$view = new SubdescriptionView($model);
$controller->actionGetData($_GET['name'], $_GET['category'], $_GET['product_price'], $_GET['id'], $_GET['product_name']);
$view->getSubdescriptionPage();
示例#2
0
文件: index.php 项目: naisly/WodenS
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 25.11.2015
 * Time: 20:38
 */
include_once $_SERVER['DOCUMENT_ROOT'] . '/Controllers/SubdescriptionController.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/Model/SubdescriptionModel.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/View/SearchAnswersView.php';
//initiate the triad
$model = new SubdescriptionModel();
//It is important that the controller and the view share the model
$controller = new SubdescriptionController($model);
$view = new SearchAnswersView($model);
$controller->actionGetHeaderCart();
if (isset($_GET['q'])) {
    $controller->actionGetQuestionsAndAnswers($_GET['q']);
}
$view->getSearchAnswersPage();