$sql="update te set e_amount='$e_mount+1' where e_id='"&$_GET[e_id]&"'";
mysql_query($sql);
运行是成功的
但是e_mount 并没有自加1
请教各位大侠 是什么地方出问题呢
$sql="update te set e_amount='$e_mount+1' where e_id='"&$_GET[e_id]&"'";
mysql_query($sql);
运行是成功的
但是e_mount 并没有自加1
请教各位大侠 是什么地方出问题呢
$sql="update te set e_amount=$e_mount+1 where e_id='"&$_GET[e_id]&"'";
这样
$sql="update te set e_amount=$e_mount+1 where e_id='".$_GET[e_id]."'";
mysql_query($sql);
php里不是 "&变量&" 是".变量."
如果e_mount有初始值是 比如是2
执行这句后,
数据库中的e_mount字段的值应该是3,但在程序里e_mount变量本身的值还是2