##寶貴意見接口
### 1.調試接口
+++
post:http://www.dakaifa.net/index.php?g=App&m=My&a=opinion
*string:msg=這款app不錯哦~#意見內容
*string:phone=13834626385#手機號
*string:uname=張天#用戶名
<<<
success
{
"msg": 1
}
<<<
error
{
"msg": 0
}
+++
### 2.接口代碼
```
public function opinion(){
$msg = $_POST['msg'];
$phone = $_POST['phone'];
$full_name = $_POST['uname'];
$guest_model = M('guestbook');
$data['full_name'] = $full_name;
$data['phone'] = $phone;
$data['msg'] = $msg;
$result = $guest_model->add($data);
if ($result) {
$ret = array('msg'=>1);
echo json_encode($ret);
}else{
$ret = array('msg'=>0);
echo json_encode($ret);
}
}
```