PHP返回“意外的分号”错误

时间:2016-04-02 17:04:37

标签: php mysql

我正在建立一个网站,您可以通过填写表格(简单的学校项目)来注册手球团队。我想通过使用isset来检查是否已填写此表单。这是我的代码:

asPercent(absolute(diffSeries(my_metric, timeShift(my_metric, '1m'))), timeShift(my_metric, '1m'))

问题是,我在第四行的if语句后得到一个错误。当我运行该网站时,它说那里有一个意想不到的分号。我该怎么做才能解决这个问题?我的PHP知识非常有限,你可能会说。

2 个答案:

答案 0 :(得分:3)

你忘记了")"登录

<?php
require("mysql.php");
if(isset($_GET['submit'] )) { 
    db_koble_til("localhost", "root", "", "handball");
    ...
    ...

答案 1 :(得分:1)

if (isset($_GET['submit'])) {
    // Every parenthesis opened should be followed by a closing parenthesis.
}