我只想知道如何从 $row[posts_remaining] 中出现的数字中减去 1
换句话说...
<?php
$con = mysql_connect($db_server_name,$db_username,$db_password);
if (!$con) {
//do something
}
mysql_select_db("" . $db_database_name . "", $con);
$result = mysql_query("SELECT * FROM users
WHERE fb_id='$user_id'");
while($row = mysql_fetch_array($result)) {
$posts_remaining = $row['posts_remaining']
// this is where I want to subtract 1 and then update "posts_remaining" with the new number
}
mysql_close($con);
?>
这会给我我的结果 where row posts_remaining = {THE NUMBER}
但是我想通过从中减去一个来更新返回的数字,然后将新数字设置在旧数字所在的位置。
我希望我不会让这令人困惑。很难解释。
另外...我是否应该将“posts_remaining”行设置为除 TEXT 之外的其他内容以执行此操作....如 Char(50) 或其他内容,或者可以将其保留为 TEXT?