解析这批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
}
我为什么收到解析错误有点困惑?过时的语法可能吗?
答案 0 :(得分:2)
在PHP中,您可以使用[]
访问数组元素,而不是()
所以你必须写
$Email = $_POST['email'];
而不是
$Email = $_POST('email');
并确保使用mysqli_real_escape_string()