如何避免意外变量的语法错误?

时间:2017-09-23 22:29:56

标签: php parsing web-deployment

解析这批php以解决将表单数据发送到AWS RDS数据库的问题。我已经按照了一些教程,但我似乎最终都在同一个地方。

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    let section = indexPath.section
    if let itemSection = ItemTableViewSections(rawValue: section) {
        switch itemSection {
        case .header: return 80.0
        case .photos: return 95.0
        case .note: return UITableViewAutomaticDimension
        case .rejectOptions: return 50.0
        }
    }

    return 0
}

我为什么收到解析错误有点困惑?过时的语法可能吗?

1 个答案:

答案 0 :(得分:2)

在PHP中,您可以使用[]访问数组元素,而不是()

所以你必须写

$Email = $_POST['email'];

而不是

$Email = $_POST('email');

并确保使用mysqli_real_escape_string()

正确转义值

http://php.net/manual/en/mysqli.real-escape-string.php