此代码应该从我的数据库中获取用户 ID,但它返回:资源 ID #6
那么我将如何编写代码以使其返回用户 ID?这是我的代码到目前为止,我知道 mysql_query 已经过时了:
<?php
include("login_check.php");
include("dbconnect.php");
mysql_select_db("maxgee_close2");
$username = $_COOKIE['maxgee_me_user'];
$user_id = mysql_query("select user_id from users where username = '$username'");
echo "$user_id";
?>