我正在开发一个 iOS 应用程序,以便在用户购买许可证时为他们提供更多选择。我主要熟悉 ObjC 和 xCode,所以我不太了解 PHP。
这是MySql表的设置:
我正在尝试从表中的最后一个条目中获取 rw_app_id 并为其 +1。然后将其输入到数据库的新行中。下面是我到目前为止构建的代码。非常感谢您的帮助,我已经手动输入了超过 2,500 个主菜到这个数据库,我已经厌倦了这样做。请帮助我保持理智。给出的代码解释会很棒。谢谢。
$increase = stripslashes($_GET['increase']);
$email = stripslashes($_GET['email']);
$unlock = stripslashes($_GET['unlock']);
$numOf = stripslashes($_GET['numOf']);
$d = mysql_connect($host, $user, $password);
if (!$d) {
header($header.': Could not connect: '.mysql_error());
exit();
}
mysql_select_db($db);
// 这就是我卡住的地方!
$rw_app_id = LAST_ROW(?)+1;
//
$q = "INSERT INTO rw_promo_code (id, rw_app_id, code, unlock_code, uses_remaining) VALUES ('$increase', '$rw_app_id', '$email', '$unlock', '$numOf')";
$result = mysql_query($q);
if (!$result) {
die('Invalid query: ' . mysql_error());
}else{
echo "Entered Successfully";
}