在我的buyBook.php中,我有一个表单,当它被提交时,它将转到check_buy.php,它将执行插入过程。这就是我在buyBook.php中所拥有的。
<div class="form-group" style="width:1px;width:1px;">
<input type="hidden" name="user_id" value="<?php echo $_SESSION['user_id']?>" />
</div>
这就是我在check_buy.php
中的内容 $user_id = $_SESSION['user_id'];
.
.
.
$ins = mysql_query("INSERT INTO `librarydb`.`buy` (`user_id`) VALUES ('$user_id');");
为什么不插入?我尝试引用它在PHP $_SESSION error when posting to the database的内容,但仍然没有运气。