コード例 #1
0
ファイル: sur_verify.php プロジェクト: puneetbharti/emmgts
<?php

include "../templates/header_session.php";
include "../classes/CafeDetails.php";
$cafe_details = new CafeDetails();
$id = $_REQUEST['id'];
$result = $cafe_details->updateSurvey($id);
if ($result) {
    header('Location: survey_detail.php');
}