在没有帖子的数据库中插入整数数据(PHP)

时间:2013-02-10 08:05:04

标签: php database

在编码时我是初学者,但我希望每次注册时都自动将这些值添加到数据库中。当我尝试输入代码时,我得到的是:

Parse error: syntax error, unexpected '[' in C:\ -----\ ---\ -------\register.php on line 16

以下是代码:

$level = 1 ['level'];
$money = 500 ['money'];
$current_health = 100 ['current_health'];
$max_health = 100 ['max_health'];

$query = "INSERT INTO users VALUES ('',
        '".mysql_real_escape_string($level)."',
        '".mysql_real_escape_string($money)."',
        '".mysql_real_escape_string($current_health)."',
        '".mysql_real_escape_string($max_health)."')";

if ($query_run = mysql_query($query))   {
            header ('Location: register_success.php');
        }

感谢。

1 个答案:

答案 0 :(得分:1)

1 ['level'];

这种语法在php

中不可用

删除[]及其内容